f7cb518430
Cleaned up settings. Updated development section in README.rst. Removed jQuery, jquery.cookie and bootstrap from repository.
14 lines
387 B
YAML
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"
|