mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 02:46:59 +00:00
26 lines
407 B
YAML
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
|
|
|