11 lines
184 B
YAML
11 lines
184 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "2.7"
|
||
|
install: "pip install -r requirements.txt"
|
||
|
script: nosetests
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|