Files
pretix_cgo/.travis.yml
2015-09-27 20:54:25 +02:00

23 lines
455 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:
directories:
- $HOME/.cache/pip