COSCUP-ap-demo/.woodpecker/lint.yml
SouthFox 35a771ac99
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/test Pipeline was successful
[cicd] update test workflows
2023-07-08 16:42:04 +08:00

15 lines
519 B
YAML

pipeline:
pylint:
image: fnndsc/python-poetry
commands:
- poetry add pylint
- poetry install
- mv demo/config.py.simple demo/config.py
- find . -type f -name "*.py" | xargs poetry run pylint --disable=E0401
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