OpenSlides/.travis.yml

32 lines
957 B
YAML
Raw Normal View History

2012-11-24 15:26:20 +01:00
language: python
sudo: false
cache:
directories:
- node_modules
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages/
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/
2012-11-24 15:26:20 +01:00
python:
- "3.4"
- "3.5"
2016-09-09 00:50:27 +02:00
env:
- TRAVIS_NODE_VERSION="4"
before_install:
- "nvm install $TRAVIS_NODE_VERSION"
install:
- "pip install --upgrade setuptools"
- "pip install --upgrade --requirement requirements.txt"
- "npm install"
- "node_modules/.bin/gulp --production"
script:
- "flake8 openslides tests"
- "isort --check-only --recursive openslides tests"
2016-02-16 00:57:45 +01:00
- "gulp jshint"
- "DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py test tests.unit"
- "coverage report --fail-under=40"
- "DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py test tests.integration"
- "coverage report --fail-under=50"
- "DJANGO_SETTINGS_MODULE='tests.old.settings' ./manage.py test tests.old"