From 0f59994d80a39ea3c820771d203d7fdd60bf9d00 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Wed, 24 Nov 2021 12:40:19 +0100 Subject: [PATCH] tox: don't run tests against python 2 (#58940) --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 8685a9e..ae874bb 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py2,py3 +envlist = py3 toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/eopayment/{env:BRANCH_NAME:} [testenv] @@ -12,7 +12,6 @@ toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/eopayment/{env:BRANCH_NAME:} setenv = SETUPTOOLS_USE_DISTUTILS=stdlib commands = - py2: py.test {posargs: --junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=eopayment/ tests} py3: py.test {posargs: --junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=eopayment/ tests} usedevelop = True deps = coverage