Spirit/.travis.yml

17 lines
280 B
YAML
Raw Normal View History

2014-05-09 21:34:48 +00:00
language: python
python:
- "2.7"
- "3.3"
- "3.4"
2014-05-09 21:34:48 +00:00
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls pep8 flake8
2014-05-09 21:34:48 +00:00
script:
2014-12-14 21:09:07 +00:00
- flake8 --exit-zero
2014-11-27 22:32:23 +00:00
- ./runtests.py example
- coverage run --source=. runtests.py
2014-05-09 22:59:46 +00:00
after_success:
- coveralls