forked from CGM_Public/pretix_original
17 lines
336 B
YAML
17 lines
336 B
YAML
language: python
|
|
python:
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
install:
|
|
- pip install -q -r src/requirements.txt
|
|
before_script:
|
|
- cd src
|
|
- flake8 --ignore=E123,F403,F401,N802,C901,W503 .
|
|
- python manage.py check
|
|
- python manage.py validate
|
|
script:
|
|
- coverage run manage.py test -v 2
|
|
after_success:
|
|
- coveralls
|