Files
webssh/.travis.yml
2020-10-02 11:51:44 +08:00

23 lines
345 B
YAML

dist: xenial
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install -r requirements.txt
- pip install 'pytest>=4.6' pytest-cov codecov flake8
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install mock; fi
script:
- pytest --cov=webssh
- flake8
after_success:
- codecov