evorepo/.travis.yml

15 lines
357 B
YAML
Raw Normal View History

dist: xenial
language: python
python:
2019-07-30 11:41:30 -07:00
- "3.7"
2017-08-28 12:29:24 -07:00
cache: pip
2017-07-11 13:18:16 -07:00
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
2017-05-16 12:53:55 -07:00
after_success:
- coveralls