This commit is contained in:
Kovid Goyal 2022-08-28 21:13:54 +05:30
parent 85b6053380
commit e69b02ad46
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -193,7 +193,7 @@ def run_tests() -> None:
if args.name: if args.name:
tests = filter_tests_by_name(tests, *args.name) tests = filter_tests_by_name(tests, *args.name)
if not tests._tests: if not tests._tests and not go_pkgs:
raise SystemExit('No test named %s found' % args.name) raise SystemExit('No test named %s found' % args.name)
python_tests_ok = run_cli(tests, args.verbosity) python_tests_ok = run_cli(tests, args.verbosity)
exit_code = 0 if python_tests_ok else 1 exit_code = 0 if python_tests_ok else 1