forked from CGM_Public/pretix_original
21 lines
397 B
YAML
21 lines
397 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
install:
|
|
- 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
|