python: Improve compatibility with Scheme tests.

* lang/python/tests/run-tests.py: Add stub --parallel option.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2017-01-03 15:27:49 +01:00
parent d0e91d28f6
commit b14419f68b

View File

@ -51,6 +51,8 @@ parser.add_argument('--srcdir', type=str,
parser.add_argument('--builddir', type=str, parser.add_argument('--builddir', type=str,
default=os.environ.get("abs_builddir", ""), default=os.environ.get("abs_builddir", ""),
help='Location of the tests.') 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() args = parser.parse_args()
if not args.interpreters: if not args.interpreters: