summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: fe7be6f2f03289ba24a06613107de5386822b3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 retro templates todolists visualize *.py

after_success:
  - coveralls