From 1263057778bbf2229f03b1864428319b0918aaff Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 10 Aug 2022 10:28:55 -0700 Subject: [PATCH] More changes to get 3.9 working. --- requirements.txt | 1 + tests/run_tests.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index cafc33a..4a1471f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -27,4 +27,5 @@ wheel sqlalchemy pymysql kazoo +sphinx 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: -- 2.46.0