OpenSlides/.travis.yml

37 lines
1022 B
YAML
Raw Normal View History

2012-11-24 15:26:20 +01:00
language: python
2018-08-08 21:09:22 +02:00
dist: xenial
sudo: true
cache:
pip: true
yarn: true
2012-11-24 15:26:20 +01:00
python:
- "3.5"
- "3.6"
2018-08-08 21:09:22 +02:00
- "3.7"
2016-09-09 00:50:27 +02:00
env:
- TRAVIS_NODE_VERSION="10.5"
2016-09-09 00:50:27 +02:00
before_install:
2016-12-09 18:38:40 +01:00
- nvm install $TRAVIS_NODE_VERSION
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
install:
- pip install --upgrade setuptools pip
2016-12-09 18:38:40 +01:00
- pip install --upgrade --requirement requirements.txt
- pip freeze
- yarn
2016-12-09 18:38:40 +01:00
- node_modules/.bin/gulp --production
script:
2016-12-09 18:38:40 +01:00
- flake8 openslides tests
- isort --check-only --recursive openslides tests
2017-08-23 20:51:06 +02:00
- python -m mypy openslides/
2016-12-09 18:38:40 +01:00
- node_modules/.bin/gulp jshint
- node_modules/.bin/karma start --browsers PhantomJS tests/karma/karma.conf.js
2016-12-09 18:38:40 +01:00
- DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py test tests.unit
- coverage report --fail-under=35
2016-12-09 18:38:40 +01:00
- DJANGO_SETTINGS_MODULE='tests.settings' coverage run ./manage.py test tests.integration
- coverage report --fail-under=73
2017-08-22 14:17:20 +02:00
- DJANGO_SETTINGS_MODULE='tests.settings' ./manage.py test tests.old