summaryrefslogtreecommitdiff
path: root/tests/run_tests.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-08-10 10:28:55 -0700
committerScott Gasch <[email protected]>2022-08-10 10:28:55 -0700
commit1263057778bbf2229f03b1864428319b0918aaff (patch)
tree848c427dca3a16c12adc09e9044ec882305e9d8b /tests/run_tests.py
parent33deb4df80de733ac25c4d4061c18b2e0eac39e7 (diff)
More changes to get 3.9 working.
Diffstat (limited to 'tests/run_tests.py')
-rwxr-xr-xtests/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run_tests.py b/tests/run_tests.py
index bc1c09b..ecd47dd 100755
--- a/tests/run_tests.py
+++ b/tests/run_tests.py
@@ -405,12 +405,12 @@ def code_coverage_report():
"""Give a final code coverage report."""
text_utils.header('Code Coverage')
exec_utils.cmd('coverage combine .coverage*')
- out = exec_utils.cmd('coverage report --omit=config-3.8.py,*_test.py,*_itest.py --sort=-cover')
+ out = exec_utils.cmd('coverage report --omit=config-3.*.py,*_test.py,*_itest.py --sort=-cover')
print(out)
print(
"""To recall this report w/o re-running the tests:
- $ coverage report --omit=config-3.8.py,*_test.py,*_itest.py --sort=-cover
+ $ coverage report --omit=config-3.*.py,*_test.py,*_itest.py --sort=-cover
...from the 'tests' directory. Note that subsequent calls to
run_tests.py with --coverage will klobber previous results. See: