Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change example configs to support tox -e pyXX #435

Merged
merged 1 commit into from Jan 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 5 additions & 8 deletions examples/adhoc-layout/tox.ini
@@ -1,12 +1,14 @@
[tox]
envlist = clean,py27,py38,report
envlist = py27,py38,report

[tool:pytest]
addopts =
--cov-report=term-missing

[testenv]
commands = pytest --cov --cov-append --cov-config={toxinidir}/.coveragerc {posargs:-vv}
setenv =
py{27,38}: COVERAGE_FILE = .coverage.{envname}
commands = pytest --cov --cov-config={toxinidir}/.coveragerc {posargs:-vv}
deps =
pytest
coverage
Expand All @@ -17,7 +19,6 @@ deps =
../..

depends =
{py27,py38}: clean
report: py27,py38

# note that this is necessary to prevent the tests importing the code from your badly laid project
Expand All @@ -27,10 +28,6 @@ changedir = tests
skip_install = true
deps = coverage
commands =
coverage combine
coverage html
coverage report --fail-under=100

[testenv:clean]
skip_install = true
deps = coverage
commands = coverage erase
13 changes: 5 additions & 8 deletions examples/src-layout/tox.ini
@@ -1,13 +1,15 @@
[tox]
envlist = clean,py27,py38,report
envlist = py27,py38,report

[tool:pytest]
testpaths = tests
addopts =
--cov-report=term-missing

[testenv]
commands = pytest --cov --cov-append {posargs:-vv}
setenv =
py{27,38}: COVERAGE_FILE = .coverage.{envname}
commands = pytest --cov {posargs:-vv}
deps =
pytest
coverage
Expand All @@ -18,17 +20,12 @@ deps =
../..

depends =
{py27,py38}: clean
report: py27,py38

[testenv:report]
skip_install = true
deps = coverage
commands =
coverage combine
coverage html
coverage report --fail-under=100

[testenv:clean]
skip_install = true
deps = coverage
commands = coverage erase