waybackpy/.travis.yml
2020-10-16 19:43:06 +05:30

19 lines
356 B
YAML

language: python
os: linux
dist: xenial
cache: pip
python:
- 3.6
- 3.8
before_install:
- python --version
- pip install -U pip
- pip install -U pytest
- pip install codecov
- pip install pytest pytest-cov
script:
- cd tests
- pytest --cov=../waybackpy
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then python -m codecov; fi