prototorch/.travis.yml

20 lines
288 B
YAML
Raw Normal View History

dist: bionic
2020-04-06 19:05:20 +00:00
sudo: false
language: python
python: 3.8
cache:
directories:
- ./tests/artifacts
2020-04-06 19:05:20 +00:00
install:
- pip install . --progress-bar off
2020-04-06 19:05:20 +00:00
- pip install codecov
- pip install pytest
script:
- coverage run -m pytest
# Push the results to codecov
2020-04-06 19:05:20 +00:00
after_success:
- codecov