updated tox for only one py version as we use multiple in the action.

This commit is contained in:
Christopher Pickering 2021-07-13 13:01:45 -05:00
parent 24bb8e66df
commit 794a54eee4
No known key found for this signature in database
GPG key ID: E14DB3B0A0FACF84

View file

@ -1,7 +1,7 @@
[tox]
envlist =
clean,
py{36,37,38,39}
test,
cov
skip_missing_interpreters = True
isolated_build = True
@ -16,8 +16,8 @@ deps = .[test]
commands =
pytest -n 0 --cov --cov-append --cov-report=term-missing --disable-warnings --junitxml=report.xml
depends =
py{36,37,38,39}: clean
cov: py{36,37,38,39}
test: clean
cov: test
[testenv:cov]