From 13b98fe39ff33d52b3bc358e9c93e2a623fdf379 Mon Sep 17 00:00:00 2001 From: Yuxin Wang Date: Wed, 22 Apr 2020 02:06:31 -0400 Subject: [PATCH] Generate xml and terminal coverage reports. --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 611dab0..a493489 100644 --- a/tox.ini +++ b/tox.ini @@ -2,8 +2,6 @@ envlist = py35, py36, py37 [testenv] -passenv = PYTHONPATH CODECOV_* TOXENV -deps = codecov>=1.4.0 +passenv = PYTHONPATH TOXENV extras = test -commands = pytest tests/ --durations=0 --cov=./ {posargs} - codecov -e TOXENV +commands = pytest tests/ --durations=0 --cov=./ --cov-report xml --cov-report term {posargs}