restic_ui_pywebio/.gitlab-ci.yml
2023-02-12 08:44:16 +01:00

23 lines
No EOL
563 B
YAML

stages:
- PyLint
- Flake8
image: "python:3.10"
test:pylint:
stage: PyLint
allow_failure: true
script:
- pip install pylint --quiet
- pip install pywebio --quiet
- pip install pywebio-battery --quiet
- pylint --max-line-length=120 pylint -d R0902,W0621,E1136,R0915,R1710,E1136 --ignored-classes=_socketobject *.py
test:flake8:
stage: Flake8
allow_failure: true
before_script:
- python --version
- pip install -r requirements.txt
script:
- flake8 --max-line-length=120 *.py