Files
webssh/.travis.yml
T
2022-05-02 19:58:38 +08:00

24 lines
355 B
YAML

dist: xenial
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
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