summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: d9c89531ae9a6e1dcb310751838cba6084ba749e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dist: xenial
language: python
python:
  - "3.7"
cache: pip
install: "pip install -r requirements.txt && pip install coveralls pylint flake8"

script:
  - python manage.py collectstatic --noinput
  - coverage run --rcfile .coveragerc manage.py test
  - pylint devel main mirrors news packages releng templates todolists visualize *.py
  - flake8 --exclude */migrations/ devel main mirrors news packages releng templates todolists visualize *.py

after_success:
  - coveralls