mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
16 lines
319 B
YAML
16 lines
319 B
YAML
language: python
|
|
python:
|
|
- "3.2"
|
|
- "3.4"
|
|
install:
|
|
- pip install -q -r src/requirements.txt
|
|
before_script:
|
|
- cd src
|
|
- flake8 --ignore=E123,E128,F403,F401,N802,C901 .
|
|
- python manage.py check
|
|
- python manage.py validate
|
|
script:
|
|
- coverage run manage.py test
|
|
after_success:
|
|
- coveralls
|