summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 94cadecab1431fc7d1ee3bfe5b50c80ecfae65d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
language: python
python:
  - "2.7"
install: "pip install -r requirements.txt && pip install coveralls pylint"

script:
  - python manage.py collectstatic --noinput
  - coverage run --rcfile .coveragerc manage.py test
  - pylint *.py

after_success:
  - coveralls