From f4fcf022b91150a1282e828b4c82895a7586a6cb Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 17 Sep 2017 14:06:03 +0200 Subject: [PATCH] python/tests/test_aubio_cmd.py: fix for python << 3 --- python/tests/test_aubio_cmd.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/tests/test_aubio_cmd.py b/python/tests/test_aubio_cmd.py index 79675cbe..af0e7367 100755 --- a/python/tests/test_aubio_cmd.py +++ b/python/tests/test_aubio_cmd.py @@ -10,7 +10,11 @@ class aubio_cmd(TestCase): 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): -- 2.11.0