COSCUP-ap-demo/.woodpecker/lint.yml

16 lines
525 B
YAML
Raw Normal View History

2023-06-13 09:21:04 +02:00
pipeline:
pylint:
image: fnndsc/python-poetry
commands:
- poetry add pylint
- poetry install
2023-07-08 10:38:33 +02:00
- mv demo/config.py.simple demo/config.py
- find . -type f -name "*.py" | xargs poetry run pylint --disable=E0401,W0511
2023-06-13 09:21:04 +02:00
flake8:
image: fnndsc/python-poetry
commands:
- poetry add flake8
- poetry install
- poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics