21 lines
340 B
YAML
21 lines
340 B
YAML
dist: bionic
|
|
sudo: false
|
|
language: python
|
|
python: 3.8
|
|
# cache:
|
|
# directories:
|
|
# - $HOME/.prototorch
|
|
|
|
install:
|
|
- pip install . --progress-bar off
|
|
- pip install codecov
|
|
- pip install pytest
|
|
|
|
script:
|
|
- coverage run -m pytest
|
|
|
|
# Push the results to codecov
|
|
after_success:
|
|
- codecov
|
|
# - bash <(curl -s https://codecov.io/bash)
|