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