diff --git a/.drone.jsonnet b/.drone.jsonnet index cdd31d9..a0cbb98 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -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', ], }, diff --git a/.drone.yml b/.drone.yml index 9af1fac..53dfa87 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 ...