ci: add python file checks to ci
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2021-06-07 22:28:44 +02:00
parent 1a609c7c78
commit a9195fdd19
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 39 additions and 1 deletions

View File

@ -13,6 +13,28 @@ local PipelineLinting = {
'ansible-later',
],
},
{
name: 'python-format',
image: 'python:3.9',
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq yapf',
'yapf -dr ./',
],
},
{
name: 'python-flake8',
image: 'python:3.9',
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq flake8',
'flake8',
],
},
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],

View File

@ -12,6 +12,22 @@ steps:
commands:
- ansible-later
- name: python-format
image: python:3.9
commands:
- pip install -qq yapf
- yapf -dr ./
environment:
PY_COLORS: 1
- name: python-flake8
image: python:3.9
commands:
- pip install -qq flake8
- flake8
environment:
PY_COLORS: 1
trigger:
ref:
- refs/heads/master
@ -99,6 +115,6 @@ depends_on:
---
kind: signature
hmac: 325ea0ab5ece03e37f604f4f016122e53f806b6387dde879604965ffa5a62f35
hmac: 541fc5ad55308be09fa538bdc954154b699d6e65799f4aa4543d1d36ff115b56
...