From 9a52962079c98ba36dbacc42da06762791399108 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 14 Sep 2017 16:33:56 +0200 Subject: [PATCH] python/tests/test_filterbank_mel.py: ignore UserWarnings --- python/tests/test_filterbank_mel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/tests/test_filterbank_mel.py b/python/tests/test_filterbank_mel.py index 4df73427..a45dbf07 100755 --- a/python/tests/test_filterbank_mel.py +++ b/python/tests/test_filterbank_mel.py @@ -5,6 +5,9 @@ from numpy.testing import TestCase, assert_equal, assert_almost_equal from aubio import cvec, filterbank, float_type +import warnings +warnings.filterwarnings('ignore', category=UserWarning, append=True) + class aubio_filterbank_mel_test_case(TestCase): def test_slaney(self): -- 2.11.0