10 lines
151 B
YAML
10 lines
151 B
YAML
|
language: python
|
||
|
sudo: false
|
||
|
cache: pip
|
||
|
before_install:
|
||
|
- pip install codecov
|
||
|
after_success:
|
||
|
- codecov
|
||
|
# command to run tests
|
||
|
script:
|
||
|
- tox
|