OpenSlides/.travis.yml

128 lines
3.0 KiB
YAML
Raw Normal View History

2018-08-08 21:09:22 +02:00
dist: xenial
sudo: true
matrix:
include:
- language: python
name: "Server: Tests Python 3.6"
cache:
pip: true
python:
- "3.6"
install:
- python --version
- pip install --upgrade setuptools pip
- pip install --upgrade --requirement requirements/development.txt
- pip install --upgrade .[big_mode]
- pip freeze
script:
- python -m mypy openslides/ tests/
2018-10-13 08:41:51 +02:00
- python -W ignore -m pytest --cov --cov-fail-under=70
- language: python
name: "Server: Tests Python 3.7"
cache:
pip: true
python:
- "3.7"
install:
- python --version
- pip install --upgrade setuptools pip
- pip install --upgrade --requirement requirements/development.txt
- pip install --upgrade .[big_mode]
- pip freeze
script:
- flake8 openslides tests
- isort --check-only --diff --recursive openslides tests
2019-01-06 16:15:56 +01:00
- black --check --diff --py36 openslides tests
- python -m mypy openslides/ tests/
2018-10-13 08:41:51 +02:00
- python -W ignore -m pytest --cov --cov-fail-under=70
- language: node_js
name: "Client: Linting"
node_js:
- "10.5"
cache:
directories:
- node_modules
before_install:
2018-11-01 16:05:01 +01:00
- npm install -g @angular/cli
- ng --version
- cd client
install:
2018-11-01 16:05:01 +01:00
- npm install
script:
2018-11-01 16:05:01 +01:00
- npm run lint
- language: node_js
name: "Client: Code Formatting Check"
node_js:
- "10.5"
cache:
directories:
- node_modules
before_install:
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
script:
2018-12-15 12:24:07 +01:00
- npm run prettify-check
- language: node_js
name: "Client: Testing"
2018-11-01 16:05:01 +01:00
node_js:
- "10.5"
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
cache:
directories:
- node_modules
before_install:
- sh -e /etc/init.d/xvfb start
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
script:
- ng test --watch=false
- language: node_js
name: "Client: Build"
node_js:
- "10.5"
cache:
directories:
- node_modules
before_install:
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
2018-11-01 16:05:01 +01:00
script:
- ng build
- language: node_js
name: "Client: Production Build"
2018-11-01 16:05:01 +01:00
node_js:
- "10.5"
cache:
directories:
- node_modules
before_install:
- npm install -g @angular/cli
- ng --version
- cd client
install:
- npm install
script:
- ng build --prod