waybackpy/.travis.yml

20 lines
364 B
YAML
Raw Normal View History

2020-05-05 17:14:57 +05:30
language: python
os: linux
dist: xenial
cache: pip
2020-07-20 15:38:33 +05:30
python:
- 2.7
- 3.6
- 3.8
before_install:
- python --version
- pip install -U pip
- pip install -U pytest
2020-07-20 23:20:43 +05:30
- pip install codecov
2020-07-20 23:10:06 +05:30
- pip install pytest pytest-cov
2020-05-05 17:14:57 +05:30
script:
2020-07-20 23:11:56 +05:30
- cd tests
2020-07-22 17:33:59 +05:30
- pytest --cov=../waybackpy
2020-07-20 15:24:26 +05:30
after_success:
2020-07-20 23:44:23 +05:30
- if [[ $TRAVIS_PYTHON_VERSION == 3.8 ]]; then python -m codecov; fi