ci: increase log level for poetry install steps

This commit is contained in:
Robert Kaussow 2021-02-18 11:18:30 +01:00
parent 006f82c0d7
commit 2596606f34
Signed by: xoxys
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 ansible-doctor --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 ./ansibledoctor',
],
},
@ -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 ./ansibledoctor',
],
},
@ -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 ./ansibledoctor -x ./ansibledoctor/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 ./ansibledoctor
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 ./ansibledoctor
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 ansible-doctor --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 ansible-doctor --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 ansible-doctor --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 ansible-doctor --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 ./ansibledoctor -x ./ansibledoctor/test
environment:
PY_COLORS: 1
@ -614,6 +614,6 @@ depends_on:
---
kind: signature
hmac: e2af01a304ae27706efb6d23d3fd0c3adfe4e590e627fb9f22bd978c9e742b18
hmac: 0b1d2af6af1df6cbd09b3bd825669200db35ac28915b3f974a8dde6574681ac8
...