aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-07-02 12:26:16 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-07-02 12:26:16 -0400
commitc897b90cbcd2d5a907d3b677f7229c2be7c44528 (patch)
tree5a909d086b21e146fbfd577b40bf7d98b4adeb11 /tox.ini
parent4bac4653d026922eefcedc40bdf90b2db2f90e75 (diff)
downloadexternal_python_setuptools-c897b90cbcd2d5a907d3b677f7229c2be7c44528.tar.gz
external_python_setuptools-c897b90cbcd2d5a907d3b677f7229c2be7c44528.tar.bz2
external_python_setuptools-c897b90cbcd2d5a907d3b677f7229c2be7c44528.zip
More directly disable coverage when running tests on pypy.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index a1774006..59213e88 100644
--- a/tox.ini
+++ b/tox.ini
@@ -23,12 +23,16 @@ setenv =
# TODO: The passed environment variables came from copying other tox.ini files
# These should probably be individually annotated to explain what needs them.
passenv=APPDATA HOMEDRIVE HOMEPATH windir Program* CommonProgram* VS* APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* NETWORK_REQUIRED
-commands=pytest {posargs}
+commands = pytest {posargs}
usedevelop=True
extras =
tests
+[testenv:pypy{,3}]
+commands = pytest --no-cov {posargs}
+
+
[testenv:coverage]
description=Combine coverage data and create report
deps=coverage