diff options
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | tox.ini | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 47ba8d0..1762181 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: - pip install codecov script: - - python -m unittest discover tests + - python -m unittest after_success: - - codecov run -m unittest tests.test_unit
\ No newline at end of file + - codecov run -m unittest tests.test_unit @@ -4,5 +4,4 @@ envlist=py{35,36,37,38,py3} [testenv] deps=coverage commands= - coverage run --parallel --branch tests/test_simple_unit.py - coverage run --parallel --branch tests/test_unit.py + coverage run --parallel --branch -m unittest |