From e2c98481201f3c03dc64b2cb3be8c9c76d3ca1fb Mon Sep 17 00:00:00 2001 From: blackfly Date: Mon, 6 Apr 2020 21:05:57 +0200 Subject: [PATCH] Update tox.ini to use coverage --- tox.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index 55b3b12..b411094 100644 --- a/tox.ini +++ b/tox.ini @@ -4,12 +4,12 @@ # and then run "tox" from this directory. [tox] -envlist = py36 +envlist = py36,py37,py38 [testenv] deps = - numpy - unittest-xml-reporting + pytest + coverage commands = - python -m xmlrunner -o reports - + pip install -e . + coverage run -m pytest \ No newline at end of file