32137b6523
python3.3 and python3.4 are supported
10 lines
285 B
YAML
10 lines
285 B
YAML
language: python
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
install: "pip install -r requirements.txt"
|
|
script:
|
|
- "DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py django test"
|
|
- "coverage report -m --fail-under=80"
|
|
- "flake8 --max-line-length=150 --statistics openslides tests"
|