summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-13 10:39:01 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2021-12-21 02:24:15 +0000
commit698dd827f0e9882ad63ab3306f0ce7fc1bc9520e (patch)
tree03368c564b1a7ae4e81d0bba1601b535fa8269dc /tox.ini
parentc42cbb1c60c5b5d1798ebe470100ed26fb02506d (diff)
downloadpython-setuptools-git-698dd827f0e9882ad63ab3306f0ce7fc1bc9520e.tar.gz
Use separated "extras" for integration tests
Instead of disabling pytest plugins, simply don't install them
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index fb4a72e4..e35bf618 100644
--- a/tox.ini
+++ b/tox.ini
@@ -22,12 +22,12 @@ passenv =
[testenv:integration]
deps = {[testenv]deps}
-extras = {[testenv]extras}
+extras = testing-integration
passenv =
{[testenv]passenv}
DOWNLOAD_PATH
commands =
- pytest --integration {posargs:-vv --durations=10 -p no:cov -p no:flake8 setuptools/tests/integration}
+ pytest --integration {posargs:-vv --durations=10 setuptools/tests/integration}
# use verbose mode by default to facilitate debugging from CI logs
[testenv:docs]