We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae6e249 + 73853a7 commit d4eaa1bCopy full SHA for d4eaa1b
tests/run_tests.py
@@ -342,9 +342,13 @@ def _parse_skip_config(config):
342
if skip_id:
343
test_name, test_module = _split_test_id(test_id)
344
reason = "not supported on this distribution in this version and arch: %s" % skipping[skip_id]
345
- print("%s (%s)\n%s ... skipped '%s'" % (test_name, test_module,
346
- test._testMethodDoc, reason),
347
- file=sys.stderr)
+ if test._testMethodDoc:
+ print("%s (%s)\n%s ... skipped '%s'" % (test_name, test_module,
+ test._testMethodDoc, reason),
348
+ file=sys.stderr)
349
+ else:
350
+ print("%s (%s) ... skipped '%s'" % (test_name, test_module, reason),
351
352
continue
353
354
# finally add the test to the suite
0 commit comments