16 lines
194 B
YAML
16 lines
194 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
install: "pip install -r requirements.txt"
|
|
|
|
script: bash travis.sh
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|