From ba76c1d3d9afa51dd0dee753081766985bc0b89e Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Fri, 10 Feb 2023 09:51:59 +0100 Subject: [PATCH] coverage.py: format skipped tests with format_test as well instead of printing a tuple --- coverage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/coverage.py b/coverage.py index 0ea034f..1a8126a 100755 --- a/coverage.py +++ b/coverage.py @@ -371,7 +371,9 @@ def main(): argv = ["./run_null.sh"] case ("skip", reason): skipped[reason].append( - ("(%d/%d) %s" % (i + 1, len(tests), name), dist, mode, variant, fmt) + format_test( + i + 1, len(tests), name, dist, mode, variant, fmt, config_dict + ) ) print(f"skipped because of {reason}", file=sys.stderr) continue