PonyConf/.travis.yml

13 lines
230 B
YAML
Raw Normal View History

2016-06-11 13:58:22 +00:00
language: python
python:
2017-04-29 21:54:12 +00:00
- 3.5
2017-11-30 22:49:57 +00:00
- 3.6
2016-06-11 13:58:22 +00:00
install:
- pip install -r requirements.txt python-coveralls flake8
script:
- coverage run manage.py test
- ./manage.py migrate
2016-06-11 13:58:22 +00:00
after_success:
- coveralls
2016-06-25 17:14:32 +00:00
- flake8 .