mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
13 lines
239 B
YAML
13 lines
239 B
YAML
language: python
|
|
python:
|
|
- "3.2"
|
|
- "3.4"
|
|
install:
|
|
- pip install -q -r src/requirements.txt
|
|
before_script:
|
|
- cd src
|
|
- "pep8 --ignore=E501,E128 --exclude=migrations ."
|
|
- pyflakes .
|
|
script:
|
|
- python manage.py test
|