|
5 | 5 |
|
6 | 6 | [tox]
|
7 | 7 | # Note: when updating Python versions, also change setup.py and .travis.yml
|
8 |
| -envlist = py27,py34,py35,py36,py37,py38,py39,{py2,py3}-nosasltls,doc,py3-trace,coverage-report |
| 8 | +envlist = py27,py34,py35,py36,py37,py38,py39,{py2,py3}-nosasltls,doc,py3-trace |
9 | 9 | minver = 1.8
|
10 | 10 |
|
11 | 11 | [testenv]
|
12 |
| -# Coverage 5.0+ has issues similar to: |
13 |
| -# https://github.com/nedbat/coveragepy/issues/915 |
14 |
| -deps = coverage<5.0 |
| 12 | +deps = |
15 | 13 | passenv = WITH_GCOV
|
16 | 14 | # - Enable BytesWarning
|
17 | 15 | # - Turn all warnings into exceptions.
|
18 | 16 | commands = {envpython} -bb -Werror \
|
19 |
| - -m coverage run --parallel -m unittest discover -v -s Tests -p 't_*' |
| 17 | + -m unittest discover -v -s Tests -p 't_*' |
20 | 18 |
|
21 | 19 | [testenv:py27]
|
22 | 20 | # No warnings with Python 2.7
|
23 | 21 | passenv = {[testenv]passenv}
|
24 | 22 | commands =
|
25 |
| - {envpython} -m coverage run --parallel \ |
26 |
| - -m unittest discover -v -s Tests -p 't_*' |
| 23 | + {envpython} -m unittest discover -v -s Tests -p 't_*' |
27 | 24 |
|
28 | 25 | [testenv:py34]
|
29 | 26 | # No warnings with Python 3.4
|
@@ -76,16 +73,6 @@ basepython = pypy3.5
|
76 | 73 | deps = {[testenv:pypy]deps}
|
77 | 74 | commands = {[testenv:pypy]commands}
|
78 | 75 |
|
79 |
| -[testenv:coverage-report] |
80 |
| -# Coverage 5.0+ has issues similar to: |
81 |
| -# https://github.com/nedbat/coveragepy/issues/915 |
82 |
| -deps = coverage<5.0 |
83 |
| -skip_install = true |
84 |
| -commands = |
85 |
| - {envpython} -m coverage combine |
86 |
| - {envpython} -m coverage report --show-missing |
87 |
| - {envpython} -m coverage html |
88 |
| - |
89 | 76 | [testenv:doc]
|
90 | 77 | basepython = python3
|
91 | 78 | deps =
|
|
0 commit comments