From 794a54eee4adaec1631cf257301d274a0b55113d Mon Sep 17 00:00:00 2001 From: Christopher Pickering Date: Tue, 13 Jul 2021 13:01:45 -0500 Subject: [PATCH] updated tox for only one py version as we use multiple in the action. --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 3da4106..7fd2363 100644 --- a/tox.ini +++ b/tox.ini @@ -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]