From e69e63a9a340dee693a00b70512004d7d3169d39 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 2 May 2022 16:53:19 +0300 Subject: [PATCH] Pylama draft. --- .drone.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++-- pylama.ini | 14 ++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 pylama.ini diff --git a/.drone.yml b/.drone.yml index e78cc23..4e296fa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,10 +1,52 @@ +# https://docs.drone.io/pipeline/overview/ +# https://docs.drone.io/pipeline/configuration/ + kind: pipeline -name: default +type: docker +name: build steps: - - name: environment + - name: build-app image: 'python:3.10-alpine' commands: - python -m venv .venv - source ./.venv/bin/activate - pip install -r requirements.txt + +--- +kind: pipeline +type: docker +name: code-audit + +steps: + - name: pylama + image: 'python:3.10-alpine' + commands: + - python -m venv .venv + - source ./.venv/bin/activate + - 'pip install pylama pylama\[all\]' + - pylama + when: + event: + include: + - pull_request + branch: + exclude: master + + +--- +kind: pipeline +type: docker +name: deploy + +steps: + - name: deploy + image: alpine + commands: + - 'echo "TODO: implement deploy"' + when: + branch: master + +depends_on: + - build + - code-audit diff --git a/pylama.ini b/pylama.ini new file mode 100644 index 0000000..b0a5d70 --- /dev/null +++ b/pylama.ini @@ -0,0 +1,14 @@ +# https://github.com/klen/pylama#configuration-file +[pylama] +format = pylint +skip = .venv/* +linters = pyflakes,pylint,pycodestyle +#ignore = F0401,C0111,E731 + +[pylama:pylint] +max_line_length = 120 +score = yes + +[pylama:pycodestyle] +# Maximum length of each line +max_line_length = 120