Changeset 7d01fdf


Ignore:
Timestamp:
Sep 23, 2016, 7:50:16 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
8526102
Parents:
ad65346
Message:

python/tests/test_pitchshift.py: get message from aubio.pitchshift

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_pitchshift.py

    rad65346 r7d01fdf  
    1212            self.o = aubio.pitchshift(hop_size = 128)
    1313        except RuntimeError as e:
    14             self.skipTest("creating aubio.pitchshift failed (recompile with rubberband?)")
     14            self.skipTest("creating aubio.pitchshift {}".format(e))
    1515
    1616    def test_default_creation(self):
     
    8080            self.o = aubio.pitchshift(mode, pitchscale, hop_size, samplerate)
    8181        except RuntimeError as e:
    82             self.skipTest("creating aubio.pitchshift failed (recompile with rubberband?)")
     82            self.skipTest("failed creating pitchshift ({})".format(e))
    8383        test_length = self.o.hop_size * 50
    8484        read = 0
Note: See TracChangeset for help on using the changeset viewer.