Files
pretix_original/.travis.yml
Raphael Michel 02c99babaa Use pip 7 caching
2015-09-27 18:49:25 +02:00

21 lines
415 B
YAML

language: python
sudo: false
python:
- "3.4"
install:
- pip install -U pip wheel
- pip install -q -r src/requirements.txt
- npm install -g less@2.5.0
before_script:
- cd src
script:
- flake8 --ignore=E123,F403,F401,N802,C901,W503 .
- isort -c -rc .
- python manage.py check
- make
- make compress
- coverage run -m py.test tests
after_success:
- coveralls
cache: pip