wexpect-venv/.travis.yml
2019-09-04 10:36:49 +02:00

26 lines
407 B
YAML

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