12 lines
No EOL
217 B
YAML
12 lines
No EOL
217 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.9"
|
|
# command to install dependencies
|
|
install:
|
|
before_script:
|
|
- pip install tox-travis
|
|
- pip install coveralls
|
|
# command to run tests
|
|
script: tox
|
|
after_success: coveralls |