16 lines
189 B
YAML
16 lines
189 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
before_install:
|
|
- pip install -r test-requirements.txt
|
|
|
|
script:
|
|
- coverage run tests.py
|
|
|
|
after_success:
|
|
- codecov
|