|
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 |
15 | 12 | passenv = WITH_GCOV
|
16 | 13 | # - Enable BytesWarning
|
17 | 14 | # - Turn all warnings into exceptions.
|
18 | 15 | commands = {envpython} -bb -Werror \
|
19 |
| - -m coverage run --parallel -m unittest discover -v -s Tests -p 't_*' |
| 16 | + -m unittest discover -v -s Tests -p 't_*' |
20 | 17 |
|
21 | 18 | [testenv:py27]
|
22 | 19 | # No warnings with Python 2.7
|
23 | 20 | passenv = {[testenv]passenv}
|
24 | 21 | commands =
|
25 |
| - {envpython} -m coverage run --parallel \ |
26 |
| - -m unittest discover -v -s Tests -p 't_*' |
| 22 | + {envpython} -m unittest discover -v -s Tests -p 't_*' |
27 | 23 |
|
28 | 24 | [testenv:py34]
|
29 | 25 | # No warnings with Python 3.4
|
@@ -76,16 +72,6 @@ basepython = pypy3.5
|
76 | 72 | deps = {[testenv:pypy]deps}
|
77 | 73 | commands = {[testenv:pypy]commands}
|
78 | 74 |
|
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 | 75 | [testenv:doc]
|
90 | 76 | basepython = python3
|
91 | 77 | deps =
|
|
0 commit comments