diff options
| author | Scott Gasch <[email protected]> | 2022-08-10 10:28:55 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-08-10 10:28:55 -0700 |
| commit | 1263057778bbf2229f03b1864428319b0918aaff (patch) | |
| tree | 848c427dca3a16c12adc09e9044ec882305e9d8b | |
| parent | 33deb4df80de733ac25c4d4061c18b2e0eac39e7 (diff) | |
More changes to get 3.9 working.
| -rw-r--r-- | requirements.txt | 1 | ||||
| -rwxr-xr-x | 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: |
