Changeset 5f57ea9
- Timestamp:
- Dec 19, 2018, 7:47:34 PM (6 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- 1301f66, 439ba7b
- Parents:
- 0770148
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_pitchshift.py
r0770148 r5f57ea9 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.