14 lines
380 B
YAML
14 lines
380 B
YAML
language: python
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "npm install"
|
|
- "node_modules/.bin/bower install"
|
|
- "node_modules/.bin/gulp --production"
|
|
script:
|
|
- "DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py test"
|
|
- "coverage report -m --fail-under=80"
|
|
- "flake8 --max-line-length=150 --statistics openslides tests"
|