Changeset d06c9a4 for python/tests
- Timestamp:
- Nov 17, 2018, 10:21:30 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- bf3f09b
- Parents:
- ff28d81 (diff), a114fe0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- python/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_filter.py
rff28d81 rd06c9a4 77 77 f.set_biquad(0., 0., 0, 0., 0.) 78 78 79 def test_all_available_presets(self): 80 f = digital_filter(7) 81 for sr in [8000, 11025, 16000, 22050, 24000, 32000, 82 44100, 48000, 88200, 96000, 192000]: 83 f.set_a_weighting(sr) 84 f = digital_filter(5) 85 for sr in [8000, 11025, 16000, 22050, 24000, 32000, 86 44100, 48000, 88200, 96000, 192000]: 87 f.set_c_weighting(sr) 88 79 89 class aubio_filter_wrong_params(TestCase): 80 90 -
python/tests/test_onset.py
rff28d81 rd06c9a4 2 2 3 3 from numpy.testing import TestCase, assert_equal, assert_almost_equal 4 from aubio import onset 4 from aubio import onset, fvec 5 5 6 6 class aubio_onset_default(TestCase): … … 83 83 samplerate = 8000 84 84 85 class aubio_onset_coverate(TestCase): 86 # extra tests to execute the C routines and improve coverage 87 88 def test_all_methods(self): 89 for method in ['default', 'energy', 'hfc', 'complexdomain', 'complex', 90 'phase', 'wphase', 'mkl', 'kl', 'specflux', 'specdiff', 91 'old_default']: 92 o = onset(method=method, buf_size=512, hop_size=256) 93 o(fvec(256)) 94 95 def test_get_methods(self): 96 o = onset(method='default', buf_size=512, hop_size=256) 97 98 assert o.get_silence() == -70 99 o.set_silence(-20) 100 assert_almost_equal(o.get_silence(), -20) 101 102 assert o.get_compression() == 1 103 o.set_compression(.99) 104 assert_almost_equal(o.get_compression(), .99) 105 106 assert o.get_awhitening() == 0 107 o.set_awhitening(1) 108 assert o.get_awhitening() == 1 109 110 o.get_last() 111 o.get_last_ms() 112 o.get_last_s() 113 o.get_descriptor() 114 o.get_thresholded_descriptor() 115 116 85 117 if __name__ == '__main__': 86 118 from unittest import main
Note: See TracChangeset
for help on using the changeset viewer.