PonyConf/.travis.yml

11 lines
194 B
YAML
Raw Normal View History

2016-06-11 13:58:22 +00:00
language: python
python:
2016-06-12 19:12:20 +00:00
- 3.4
2016-06-11 13:58:22 +00:00
install:
- pip install -r requirements.txt python-coveralls flake8
script:
- coverage run manage.py test
after_success:
- coveralls
2016-06-25 17:14:32 +00:00
- flake8 .