Use quiet option for CI jobs

This commit is contained in:
Sonny Bakker 2022-05-26 11:57:10 +02:00
parent bea7afb355
commit 1f0a8a54da
3 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ python-linting:
stage: lint
image: python:3.9-bullseye
before_script:
- pip install -r requirements/production.txt -r requirements/development.txt
- pip install -r requirements/production.txt -r requirements/development.txt --quiet
script:
- isort src/ --check-only --recursive
- black src/ --line-length 88 --check
@ -16,7 +16,7 @@ javascript-linting:
stage: lint
image: node:12-bullseye
before_script:
- npm install
- npm install --quiet
script:
- npm run lint
only: