evorepo/.travis.yml
Jelle van der Waa 8b7486de83 Test on 3.7
2019-07-30 20:53:42 +02:00

15 lines
357 B
YAML

dist: xenial
language: python
python:
- "3.7"
cache: pip
install: "pip install -r requirements.txt && pip install coveralls pylint"
script:
- python manage.py collectstatic --noinput
- coverage run --rcfile .coveragerc manage.py test
- pylint devel main mirrors news packages releng templates todolists visualize *.py
after_success:
- coveralls