evorepo/.travis.yml
Jelle van der Waa c23a4c0d11 travisci: set travis vm to xenial
Signed-off-by: Jelle van der Waa <jelle@vdwaa.nl>
2019-04-05 20:41:15 +02:00

15 lines
357 B
YAML

dist: xenial
language: python
python:
- "3.6"
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