Changeset 1301f66
- Timestamp:
- Dec 19, 2018, 7:47:50 PM (6 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
- Children:
- 7a02ce9
- Parents:
- 22d7902 (diff), 5f57ea9 (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_pitchshift.py
r22d7902 r1301f66 2 2 3 3 from numpy.testing import TestCase 4 from _tools import parametrize 4 from _tools import parametrize, skipTest 5 5 import numpy as np 6 6 import aubio … … 83 83 self.o = aubio.pitchshift(mode, pitchscale, hop_size, samplerate) 84 84 except RuntimeError as e: 85 s elf.skipTest("failed creating pitchshift ({})".format(e))85 skipTest("failed creating pitchshift ({})".format(e)) 86 86 test_length = self.o.hop_size * 50 87 87 read = 0
Note: See TracChangeset
for help on using the changeset viewer.