waybackpy/.travis.yml

17 lines
284 B
YAML

language: python
os: osx
cache: pip
python:
- 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:
- python -m codecov