[TEST] add CI test: travis-ci

This commit is contained in:
Benedek Racz 2019-09-04 10:36:49 +02:00
parent a5dcd7ac26
commit a49f52b590

26
.travis.yml Normal file
View File

@ -0,0 +1,26 @@
dist: xenial # required for Python >= 3.7
language: python
python:
- "3.5"
- "3.6"
- "3.7"
os: windows
# command to install dependencies
install:
- pip install .[test]
# command to run tests
script:
- coverage run -m unittest
# Push the results back to codecov
after_success:
- codecov
notifications:
email:
on_success: never
on_failure: always