From d0bdc988acd10274331941c5ffe90867870c2ad7 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 10 Apr 2020 11:03:23 +0200 Subject: [PATCH] tox.ini: aggregate coverage for py3 too --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index b49e3c4..b9d7efb 100644 --- a/tox.ini +++ b/tox.ini @@ -11,12 +11,12 @@ toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/eopayment/{env:BRANCH_NAME:} # django.contrib.auth is not tested it does not work with our templates 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 tests} + py3: py.test {posargs: --junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=eopayment/ tests} usedevelop = True deps = coverage pytest pytest-freezegun - py2: pytest-cov + pytest-cov mock httmock lxml