19 lines
198 B
YAML
19 lines
198 B
YAML
language: python
|
|
|
|
dist: xenial
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
|
|
install:
|
|
- pip install -U -r requirements.txt
|
|
|
|
script:
|
|
- scripts/test.sh
|
|
|
|
after_script:
|
|
- codecov |