OpenSlides/.travis.yml

14 lines
387 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 django test"
- "coverage report -m --fail-under=80"
- "flake8 --max-line-length=150 --statistics openslides tests"