ci: increase log level for poetry install steps

This commit is contained in:
Robert Kaussow 2021-02-18 11:18:31 +01:00
parent e951d9f8a8
commit 44c0e4b328
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
2 changed files with 12 additions and 12 deletions

View File

@ -6,7 +6,7 @@ local PythonVersion(pyversion='3.6') = {
},
commands: [
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry install',
'poetry version',
'poetry run git-batch --help',
],
@ -32,7 +32,7 @@ local PipelineLint = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry install',
'poetry run yapf -dr ./gitbatch',
],
},
@ -45,7 +45,7 @@ local PipelineLint = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry install',
'poetry run flake8 ./gitbatch',
],
},
@ -100,7 +100,7 @@ local PipelineSecurity = {
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry install',
'poetry run bandit -r ./gitbatch -x ./gitbatch/test',
],
},

View File

@ -12,7 +12,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry run yapf -dr ./gitbatch
environment:
PY_COLORS: 1
@ -22,7 +22,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry run flake8 ./gitbatch
environment:
PY_COLORS: 1
@ -51,7 +51,7 @@ steps:
image: python:3.6
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry version
- poetry run git-batch --help
environment:
@ -63,7 +63,7 @@ steps:
image: python:3.7
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry version
- poetry run git-batch --help
environment:
@ -75,7 +75,7 @@ steps:
image: python:3.8
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry version
- poetry run git-batch --help
environment:
@ -87,7 +87,7 @@ steps:
image: python:3.9
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry version
- poetry run git-batch --help
environment:
@ -118,7 +118,7 @@ steps:
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q
- poetry install
- poetry run bandit -r ./gitbatch -x ./gitbatch/test
environment:
PY_COLORS: 1
@ -529,6 +529,6 @@ depends_on:
---
kind: signature
hmac: 3aab823250dbdf8f5078e4239f40bfa472c425f8bf61ffef87650cfcf88629c2
hmac: ba5d8a0fd0f6223e221c2d6f0f0af662b1c4dacf850bfb054fef4b3f83455906
...