prototorch/.travis.yml
2020-04-14 20:19:15 +02:00

19 lines
309 B
YAML

dist: bionic
sudo: false
language: python
python: 3.8
cache:
directories:
- ./tests/artifacts
install:
- pip install . --progress-bar off
- pip install -r requirements.txt
script:
- coverage run -m pytest
# Push the results to codecov
after_success:
- bash <(curl -s https://codecov.io/bash)