15 lines
168 B
YAML
15 lines
168 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
|
|
script:
|
|
- python setup.py test
|