1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

Ensured PRs dont fail on doc lints

This commit is contained in:
A_D 2020-09-09 23:05:59 +02:00
parent 054c2a09c7
commit 009ded50a1
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -83,5 +83,6 @@ jobs:
git diff "refs/remotes/${BASE_REPO_OWNER}/${BASE_REF}" -- | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --diff
# Can optionally add `--exit-zero` to the flake8 arguments so that
# this doesn't fail the build.
git diff "refs/remotes/${BASE_REPO_OWNER}/${BASE_REF}" -- | flake8 . --count --statistics --diff
# explicitly ignore docstring errors (start with D)
git diff "refs/remotes/${BASE_REPO_OWNER}/${BASE_REF}" -- | flake8 . --count --statistics --diff --extend-ignore D
####################################################################