summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 0c5166244680a1d6a6915572e57601369c98d042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: python
python:
  - "2.7"
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