2020-04-06 19:21:14 +00:00
|
|
|
dist: bionic
|
2020-04-06 19:05:20 +00:00
|
|
|
sudo: false
|
|
|
|
language: python
|
|
|
|
python: 3.8
|
2020-04-08 20:47:31 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- ./tests/artifacts
|
2020-04-06 19:05:20 +00:00
|
|
|
|
|
|
|
install:
|
2020-04-06 19:16:43 +00:00
|
|
|
- pip install . --progress-bar off
|
2020-04-14 18:19:15 +00:00
|
|
|
- pip install -r requirements.txt
|
2020-04-06 19:05:20 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- coverage run -m pytest
|
|
|
|
|
2020-04-06 19:16:43 +00:00
|
|
|
# Push the results to codecov
|
2020-04-06 19:05:20 +00:00
|
|
|
after_success:
|
2020-04-08 21:37:11 +00:00
|
|
|
- bash <(curl -s https://codecov.io/bash)
|