From bd6a7418fc386134a3354a48f50f8e2bf3162fe1 Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Sun, 29 Nov 2015 11:12:12 -0500 Subject: [PATCH] tox: more coverage fixes --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 64744f100..a1ca5a99e 100644 --- a/tox.ini +++ b/tox.ini @@ -37,5 +37,5 @@ passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH commands = pip install "{toxinidir}" cp "{toxinidir}/.coveragerc" "{envsitepackagesdir}" - py.test {posargs:-n 4 --cov-report xml --cov pkgcore pkgcore/test} - mv coverage.xml "{toxinidir}" + coverage run -m py.test {posargs:-n 4 pkgcore/test} + mv .coverage "{toxinidir}"