Merge pull request #5048 from tsiegleauq/new-travis-flags
Adjust ng test to be more serverfriendly
This commit is contained in:
commit
a5a40e9e11
108
.travis.yml
108
.travis.yml
@ -37,52 +37,7 @@ matrix:
|
|||||||
- npm install
|
- npm install
|
||||||
script: skip
|
script: skip
|
||||||
- stage: "Run tests"
|
- stage: "Run tests"
|
||||||
name: "Server: Tests Python 3.6"
|
name: "Client: Testing"
|
||||||
language: python
|
|
||||||
python:
|
|
||||||
- "3.6"
|
|
||||||
script:
|
|
||||||
- mypy openslides/ tests/
|
|
||||||
- pytest --cov --cov-fail-under=75
|
|
||||||
|
|
||||||
- name: "Server: Tests Python 3.7"
|
|
||||||
language: python
|
|
||||||
python:
|
|
||||||
- "3.7"
|
|
||||||
script:
|
|
||||||
- flake8 openslides tests
|
|
||||||
- isort --check-only --diff --recursive openslides tests
|
|
||||||
- black --check --diff --target-version py36 openslides tests
|
|
||||||
- mypy openslides/ tests/
|
|
||||||
- pytest --cov --cov-fail-under=75
|
|
||||||
|
|
||||||
- name: "Server: Tests Startup Routine Python 3.7"
|
|
||||||
language: python
|
|
||||||
python:
|
|
||||||
- "3.7"
|
|
||||||
script:
|
|
||||||
- set -e
|
|
||||||
- python manage.py createsettings
|
|
||||||
- python manage.py migrate
|
|
||||||
- python manage.py runserver --noreload & (sleep 15 && kill $(ps aux | grep 'manage.py runserver' | head -n -1 | awk '{print $2}'))
|
|
||||||
- set +e
|
|
||||||
|
|
||||||
- name: "Client: Linting"
|
|
||||||
language: node_js
|
|
||||||
node_js: "10.9"
|
|
||||||
script:
|
|
||||||
- cd client
|
|
||||||
- npm run lint-check
|
|
||||||
|
|
||||||
- name: "Client: Code Formatting Check"
|
|
||||||
language: node_js
|
|
||||||
node_js: "10.9"
|
|
||||||
script:
|
|
||||||
- cd client
|
|
||||||
- npm list --depth=0 || cat --help
|
|
||||||
- npm run prettify-check
|
|
||||||
|
|
||||||
- name: "Client: Testing"
|
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js: "10.9"
|
node_js: "10.9"
|
||||||
apt:
|
apt:
|
||||||
@ -97,14 +52,7 @@ matrix:
|
|||||||
- export CHROME_BIN=/usr/bin/google-chrome
|
- export CHROME_BIN=/usr/bin/google-chrome
|
||||||
- export DISPLAY=:99.0
|
- export DISPLAY=:99.0
|
||||||
script:
|
script:
|
||||||
- ng test --watch=false
|
- npm run test-silently
|
||||||
|
|
||||||
- name: "Client: Build"
|
|
||||||
language: node_js
|
|
||||||
node_js: "10.9"
|
|
||||||
script:
|
|
||||||
- cd client
|
|
||||||
- npm run build-debug
|
|
||||||
|
|
||||||
- name: "Client: Production Build (ES5)"
|
- name: "Client: Production Build (ES5)"
|
||||||
language: node_js
|
language: node_js
|
||||||
@ -123,3 +71,55 @@ matrix:
|
|||||||
- echo "Firefox ESR" > browserslist
|
- echo "Firefox ESR" > browserslist
|
||||||
script:
|
script:
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
||||||
|
- name: "Client: Build"
|
||||||
|
language: node_js
|
||||||
|
node_js: "10.9"
|
||||||
|
script:
|
||||||
|
- cd client
|
||||||
|
- npm run build-debug
|
||||||
|
|
||||||
|
- name: "Server: Tests Python 3.6"
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.6"
|
||||||
|
script:
|
||||||
|
- mypy openslides/ tests/
|
||||||
|
- pytest --cov --cov-fail-under=75
|
||||||
|
|
||||||
|
- name: "Server: Tests Python 3.7"
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.7"
|
||||||
|
script:
|
||||||
|
- flake8 openslides tests
|
||||||
|
- isort --check-only --diff --recursive openslides tests
|
||||||
|
- black --check --diff --target-version py36 openslides tests
|
||||||
|
- mypy openslides/ tests/
|
||||||
|
- pytest --cov --cov-fail-under=75
|
||||||
|
|
||||||
|
- name: "Client: Linting"
|
||||||
|
language: node_js
|
||||||
|
node_js: "10.9"
|
||||||
|
script:
|
||||||
|
- cd client
|
||||||
|
- npm run lint-check
|
||||||
|
|
||||||
|
- name: "Client: Code Formatting Check"
|
||||||
|
language: node_js
|
||||||
|
node_js: "10.9"
|
||||||
|
script:
|
||||||
|
- cd client
|
||||||
|
- npm list --depth=0 || cat --help
|
||||||
|
- npm run prettify-check
|
||||||
|
|
||||||
|
- name: "Server: Tests Startup Routine Python 3.7"
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.7"
|
||||||
|
script:
|
||||||
|
- set -e
|
||||||
|
- python manage.py createsettings
|
||||||
|
- python manage.py migrate
|
||||||
|
- python manage.py runserver --noreload & (sleep 15 && kill $(ps aux | grep 'manage.py runserver' | head -n -1 | awk '{print $2}'))
|
||||||
|
- set +e
|
||||||
|
@ -29,6 +29,12 @@ module.exports = function (config) {
|
|||||||
logLevel: config.LOG_INFO,
|
logLevel: config.LOG_INFO,
|
||||||
autoWatch: true,
|
autoWatch: true,
|
||||||
browsers: ['Chrome'],
|
browsers: ['Chrome'],
|
||||||
|
customLaunchers: {
|
||||||
|
ChromeHeadlessNoSandbox: {
|
||||||
|
base: 'ChromeHeadless',
|
||||||
|
flags: ['--no-sandbox']
|
||||||
|
}
|
||||||
|
},
|
||||||
singleRun: false,
|
singleRun: false,
|
||||||
proxies: {
|
proxies: {
|
||||||
'/apps/': 'http://localhost:8000/apps/',
|
'/apps/': 'http://localhost:8000/apps/',
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
"build": "npm run ng-high-memory -- build --prod",
|
"build": "npm run ng-high-memory -- build --prod",
|
||||||
"build-debug": "npm run ng-high-memory -- build",
|
"build-debug": "npm run ng-high-memory -- build",
|
||||||
"test": "ng test",
|
"test": "ng test",
|
||||||
|
"test-silently": "npm run test -- --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox",
|
||||||
"lint-check": "ng lint",
|
"lint-check": "ng lint",
|
||||||
"lint-write": "ng lint --fix",
|
"lint-write": "ng lint --fix",
|
||||||
"e2e": "ng e2e",
|
"e2e": "ng e2e",
|
||||||
|
Loading…
Reference in New Issue
Block a user