2020-05-05 13:44:57 +02:00
|
|
|
language: python
|
2020-11-26 03:38:59 +01:00
|
|
|
os: linux
|
|
|
|
dist: xenial
|
2020-05-05 13:44:57 +02:00
|
|
|
cache: pip
|
2020-07-20 12:08:33 +02:00
|
|
|
python:
|
2020-10-16 16:13:06 +02:00
|
|
|
- 3.8
|
2020-07-20 12:08:33 +02:00
|
|
|
before_install:
|
|
|
|
- python --version
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -U pytest
|
2020-07-20 19:50:43 +02:00
|
|
|
- pip install codecov
|
2020-07-20 19:40:06 +02:00
|
|
|
- pip install pytest pytest-cov
|
2020-05-05 13:44:57 +02:00
|
|
|
script:
|
2020-07-20 19:41:56 +02:00
|
|
|
- cd tests
|
2020-07-22 14:03:59 +02:00
|
|
|
- pytest --cov=../waybackpy
|
2020-07-20 11:54:26 +02:00
|
|
|
after_success:
|
2020-11-21 12:30:11 +01:00
|
|
|
- python -m codecov
|