Some debugging for hang in linux CI

This commit is contained in:
Kovid Goyal 2023-10-17 05:59:28 +05:30
parent 0c7aa15980
commit 1d28aa1d6a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -68,6 +68,9 @@ class Test(BaseTest):
if opts.exclude_test_name: if opts.exclude_test_name:
tests = remove_tests_by_name(tests, *opts.exclude_test_name) tests = remove_tests_by_name(tests, *opts.exclude_test_name)
run_cli(tests, verbosity=opts.test_verbosity, buffer=not opts.test_name) run_cli(tests, verbosity=opts.test_verbosity, buffer=not opts.test_name)
if is_ci:
print('run_cli returned', flush=True)
raise SystemExit(0)
class TestRS(BaseTest): class TestRS(BaseTest):