ci: switch to molecule v4
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2022-12-21 09:13:54 +01:00
parent 93442a0e83
commit 3b2a6f60c4
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 7 additions and 7 deletions

View File

@ -15,18 +15,18 @@ local PipelineLinting = {
},
{
name: 'python-format',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq yapf',
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
],
},
{
name: 'python-flake8',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},

View File

@ -13,15 +13,15 @@ steps:
- ansible-later
- name: python-format
image: python:3.10
image: python:3.11
commands:
- pip install -qq yapf
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
environment:
PY_COLORS: 1
- name: python-flake8
image: python:3.10
image: python:3.11
commands:
- pip install -qq flake8
- flake8
@ -115,6 +115,6 @@ depends_on:
---
kind: signature
hmac: 357b18e7b3fc8dd51a8fbc97f48cddc92834318f802aee84030f19a5aeb1819c
hmac: d8ed6281342204cfc2011bbf9b1f055426c9ae8c27e106f8eaa6d58ac3204452
...