10 lines
219 B
YAML
10 lines
219 B
YAML
# ref: https://docs.travis-ci.com/user/languages/python
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
# command to install dependencies
|
|
install: "pip install -r requirements.txt"
|
|
# command to run tests
|
|
script: nosetests
|