Spirit/.travis.yml
2015-09-06 12:23:44 -03:00

20 lines
337 B
YAML

language: python
# Use container-based infrastructure
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls pep8==1.5.7 flake8
script:
- flake8 --exit-zero
- ./runtests.py example
- coverage run --source=. runtests.py
after_success:
- coveralls