summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 8c0692492ffa3975c6640626e3a7eca0a55795ec (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 flake8"

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

after_success:
  - coveralls