From 07b43a3a679a4ee4317fe770427cce06b65bdca0 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 14 Apr 2013 14:26:04 -0500 Subject: [PATCH] tests/test_aubio_pitch.py: rename and use unit_timeside --- tests/{testaubio_pitch.py => test_aubio_pitch.py} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename tests/{testaubio_pitch.py => test_aubio_pitch.py} (90%) diff --git a/tests/testaubio_pitch.py b/tests/test_aubio_pitch.py similarity index 90% rename from tests/testaubio_pitch.py rename to tests/test_aubio_pitch.py index 02990d0..31ffb58 100755 --- a/tests/testaubio_pitch.py +++ b/tests/test_aubio_pitch.py @@ -1,6 +1,6 @@ #! /usr/bin/env python -from unittest import TestCase +from unit_timeside import * from timeside.decoder import * from timeside.analyzer.aubio_pitch import AubioPitch @@ -23,5 +23,4 @@ class TestAubioPitch(TestCase): #print "result:", self.analyzer.result() if __name__ == '__main__': - from unittest import main - main() + unittest.main(testRunner=TestRunner()) -- 2.39.5