summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: e7abbadd70e5feb74574f3ba85d7d2a087c09801 (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  devel main mirrors news packages releng templates todolists visualize *.py

after_success:
  - coveralls