prototorch/.travis.yml

20 lines
294 B
YAML
Raw Normal View History

dist: trusty
2020-04-06 19:05:20 +00:00
sudo: false
language: python
python: 3.8
# cache:
# directories:
# - $HOME/.prototorch
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