shithub: aubio

Download patch

ref: b57ae47ad2d43cb3882afb4b5e59d5cf7be98db9
parent: a729232ed7ad371b4eee13bbcd8d308b2a22a14e
parent: f4fcf022b91150a1282e828b4c82895a7586a6cb
author: Paul Brossier <piem@piem.org>
date: Sun Sep 17 11:10:32 EDT 2017

Merge branch 'master' into coveralls

--- a/python/tests/test_aubio_cmd.py
+++ b/python/tests/test_aubio_cmd.py
@@ -10,7 +10,11 @@
         self.a_parser = aubio.cmd.aubio_parser()
 
     def test_default_creation(self):
-        assert self.a_parser.parse_args(['-V']).show_version
+        try:
+            assert self.a_parser.parse_args(['-V']).show_version
+        except SystemExit as e:
+            url = 'https://bugs.python.org/issue9253'
+            self.skipTest('subcommand became optional in py3, see %s' % url)
 
 class aubio_cmd_utils(TestCase):