ci: increase log level for poetry install steps

This commit is contained in:
Robert Kaussow 2021-02-18 11:18:31 +01:00
parent 8b612230cf
commit cea6803a9d
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 docker-autotag --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 ./dockerautotag',
],
},
@ -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 ./dockerautotag',
],
},
@ -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 ./dockerautotag -x ./dockerautotag/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 ./dockerautotag
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 ./dockerautotag
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 docker-autotag --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 docker-autotag --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 docker-autotag --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 docker-autotag --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 ./dockerautotag -x ./dockerautotag/test
environment:
PY_COLORS: 1
@ -529,6 +529,6 @@ depends_on:
---
kind: signature
hmac: 6c2f2b96724c5f5ae068e58f9474c300006d7547402ff31985b288e37670ceff
hmac: 1e36472e0cf66a361e602a626ef1910979a3829c5a9ea5718f027def78a5b4c1
...