Use quiet option for CI jobs
This commit is contained in:
parent
bea7afb355
commit
1f0a8a54da
3 changed files with 5 additions and 5 deletions
|
|
@ -2,6 +2,6 @@ static:
|
||||||
stage: build
|
stage: build
|
||||||
image: node:12-bullseye
|
image: node:12-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- npm install
|
- npm install --quiet
|
||||||
script:
|
script:
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ python-linting:
|
||||||
stage: lint
|
stage: lint
|
||||||
image: python:3.9-bullseye
|
image: python:3.9-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -r requirements/production.txt -r requirements/development.txt
|
- pip install -r requirements/production.txt -r requirements/development.txt --quiet
|
||||||
script:
|
script:
|
||||||
- isort src/ --check-only --recursive
|
- isort src/ --check-only --recursive
|
||||||
- black src/ --line-length 88 --check
|
- black src/ --line-length 88 --check
|
||||||
|
|
@ -16,7 +16,7 @@ javascript-linting:
|
||||||
stage: lint
|
stage: lint
|
||||||
image: node:12-bullseye
|
image: node:12-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- npm install
|
- npm install --quiet
|
||||||
script:
|
script:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
only:
|
only:
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ python-tests:
|
||||||
- memcached:1.5.22
|
- memcached:1.5.22
|
||||||
image: python:3.9-bullseye
|
image: python:3.9-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -r requirements/production.txt -r requirements/development.txt
|
- pip install -r requirements/production.txt -r requirements/development.txt --quiet
|
||||||
script:
|
script:
|
||||||
- coverage run ./src/manage.py test newsreader
|
- coverage run ./src/manage.py test newsreader
|
||||||
|
|
||||||
|
|
@ -14,6 +14,6 @@ javascript-tests:
|
||||||
stage: test
|
stage: test
|
||||||
image: node:12-bullseye
|
image: node:12-bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- npm install
|
- npm install --quiet
|
||||||
script:
|
script:
|
||||||
- npm test
|
- npm test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue