diff options
author | Justus Winter <[email protected]> | 2017-01-03 14:27:49 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-01-03 14:29:01 +0000 |
commit | b14419f68b3aaa90025e0e97151de7c3da7806fb (patch) | |
tree | d5229fb44c787966f71e43d39aaab78f0c08f288 /lang/python/tests/run-tests.py | |
parent | python: Add a switch '--quiet' to the test runner. (diff) | |
download | gpgme-b14419f68b3aaa90025e0e97151de7c3da7806fb.tar.gz gpgme-b14419f68b3aaa90025e0e97151de7c3da7806fb.zip |
python: Improve compatibility with Scheme tests.
* lang/python/tests/run-tests.py: Add stub --parallel option.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/run-tests.py')
-rw-r--r-- | lang/python/tests/run-tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lang/python/tests/run-tests.py b/lang/python/tests/run-tests.py index 3f9ece39..46c6d8c8 100644 --- a/lang/python/tests/run-tests.py +++ b/lang/python/tests/run-tests.py @@ -51,6 +51,8 @@ parser.add_argument('--srcdir', type=str, parser.add_argument('--builddir', type=str, default=os.environ.get("abs_builddir", ""), help='Location of the tests.') +parser.add_argument('--parallel', action="store_true", default=False, + help='Ignored. For compatibility with run-tests.scm.') args = parser.parse_args() if not args.interpreters: |