18 lines
299 B
YAML
18 lines
299 B
YAML
language: python
|
|
os: linux
|
|
dist: xenial
|
|
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
|