summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchoolGuy <matrixfueller@gmail.com>2021-01-13 09:27:55 +0100
committerSchoolGuy <matrixfueller@gmail.com>2021-01-13 09:29:52 +0100
commit14cc4e42c665a74906193fb11fda4e6f2bf8ca39 (patch)
tree6f2f3b277faa1d71c31482c3ae24f7fc0cb9a358
parenta7470248fed0f67a9b6bfd57e81dcc0a96a75fa6 (diff)
downloadpython-magic-14cc4e42c665a74906193fb11fda4e6f2bf8ca39.tar.gz
CI: Fix test execution on Travis
We are already running a matrix. Thus we don't need our wrapper script
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 8bc3569..251f782 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,12 +9,12 @@ python:
- "3.8"
install:
- - pip install coverage
+ - pip install coverage coveralls codecov
- pip install .
script:
- - LC_ALL=en_US.UTF-8 coverage run ./test/test.py
+ - LC_ALL=en_US.UTF-8 coverage run -m unittest test
after_success:
- - pip install coveralls && coveralls
- - pip install codecov && codecov
+ - coveralls
+ - codecov