diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-16 13:38:55 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-22 15:59:33 -0500 |
commit | 2b890c89ba5de9bbf91388d7268919d5c7769bbf (patch) | |
tree | a452d3789622a14de913dc64d535c09ca525d113 | |
parent | 78fbc3a364e85dc5f31f865f397cd4000294444f (diff) | |
download | haskell-2b890c89ba5de9bbf91388d7268919d5c7769bbf.tar.gz |
testsuite: Don't print names of all fragile tests on all runs
This information about fragile tests is pretty useless but annoying on
CI where you have to scroll up a long way to see the actual issues.
-rw-r--r-- | testsuite/driver/testlib.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index bec08a490c..0f1f6d4538 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -2770,14 +2770,6 @@ def summary(t: TestRun, file: TextIO, short=False, color=False) -> None: file.write('Framework warnings:\n') printTestInfosSummary(file, t.framework_warnings) - if t.fragile_passes: - file.write('Fragile test passes:\n') - printTestInfosSummary(file, t.fragile_passes) - - if t.fragile_failures: - file.write('Fragile test failures:\n') - printTestInfosSummary(file, t.fragile_failures) - if stopping(): file.write('WARNING: Testsuite run was terminated early\n') |