11 lines
149 B
YAML
11 lines
149 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- nosetests --verbose test
|