Changeset ad65346 for python/tests/test_source.py
- Timestamp:
- Sep 23, 2016, 6:57:20 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- 7d01fdf
- Parents:
- 3ffedf22 (diff), bd8a92d (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_source.py
r3ffedf22 rad65346 6 6 from aubio import source 7 7 from utils import list_all_sounds 8 9 import warnings 10 warnings.filterwarnings('ignore', category=UserWarning, append=True) 8 11 9 12 list_of_sounds = list_all_sounds('sounds') … … 23 26 24 27 def setUp(self): 25 if not len(list_of_sounds): self.skipTest('add some sound files in \'python/tests/sounds\'') 28 if not len(list_of_sounds): 29 self.skipTest('add some sound files in \'python/tests/sounds\'') 26 30 self.default_test_sound = list_of_sounds[0] 27 31
Note: See TracChangeset
for help on using the changeset viewer.