Changeset 60cbfe8


Ignore:
Timestamp:
Sep 17, 2016, 3:09:42 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
f9cca9c
Parents:
24dfc3d
Message:

python/tests/test_pitchshift.py: skip test on RuntimeError?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_pitchshift.py

    r24dfc3d r60cbfe8  
    77
    88    def setUp(self):
    9         self.o = aubio.pitchshift()
     9        try:
     10            self.o = aubio.pitchshift()
     11        except RuntimeError as e:
     12            self.skipTest("creating aubio.pitchshift failed (recompile with rubberband?)")
    1013
    1114    def test_default_creation(self):
Note: See TracChangeset for help on using the changeset viewer.