summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 03bb6f46cfd61d53c75e43ada99cc5bbe828652c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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