Skip to content

Commit

Permalink
Fix 'tox -p auto' not to coverage report too early
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Apr 7, 2020
1 parent b5fc77c commit 3f98d47
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ envlist =
pypy,
pypy3,
coverage-report
# try to keep this in sync with [tox:coverage-reports] 'depends =' please

[testenv]
usedevelop = true
Expand All @@ -21,7 +22,7 @@ deps =
coverage

[testenv:coverage-report]
basepython = python3.6
basepython = python3
deps = coverage
setenv =
COVERAGE_FILE=.coverage
Expand All @@ -31,3 +32,12 @@ commands =
coverage combine
coverage html --ignore-errors
coverage report --ignore-errors --fail-under=93
parallel_show_output = true
depends =
py27,
py35,
py36,
py37,
py38,
pypy,
pypy3,

0 comments on commit 3f98d47

Please sign in to comment.