2022-04-19 10:18:59 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: python
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
|
|
image: python:latest
|
|
|
|
commands:
|
|
|
|
- pip install --upgrade pip black flake8 mypy pylint
|
|
|
|
- flake8 --ignore=E501,W503,E265
|
2022-04-19 10:59:20 +02:00
|
|
|
- mypy --ignore-missing-imports .
|
2022-04-19 10:18:59 +02:00
|
|
|
- pylint
|