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-06 19:16:43 +00:00
|
|
|
# cache:
|
|
|
|
# directories:
|
|
|
|
# - $HOME/.prototorch
|
2020-04-06 19:05:20 +00:00
|
|
|
|
|
|
|
install:
|
2020-04-06 19:16:43 +00:00
|
|
|
- pip install . --progress-bar off
|
2020-04-06 19:05:20 +00:00
|
|
|
- pip install codecov
|
|
|
|
- pip install pytest
|
|
|
|
|
|
|
|
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:
|
|
|
|
- codecov
|