diff --git a/test/lint/pylint/Dockerfile b/test/lint/pylint/Dockerfile index 4fcb3ebedebe16cb91fd2e0e5b9862da08d6e379..7f78f0d8ece01479515316e980b3ddec824b4294 100644 --- a/test/lint/pylint/Dockerfile +++ b/test/lint/pylint/Dockerfile @@ -2,6 +2,8 @@ FROM python:3.10-alpine COPY requirements.txt / +COPY pylintrc /root/.pylintrc + RUN apk add --no-cache \ build-base=0.5-r2 \ git=2.34.1-r0 \ diff --git a/test/lint/pylint/pylintrc b/test/lint/pylint/pylintrc new file mode 100644 index 0000000000000000000000000000000000000000..0fd9caadf7a5736d5e5ab20949877a3d26e401f6 --- /dev/null +++ b/test/lint/pylint/pylintrc @@ -0,0 +1,3 @@ + +[TYPECHECK] +generated-members=app.logger diff --git a/test/lint/pylint/requirements.txt b/test/lint/pylint/requirements.txt index 6684ea081ad050309f2375d1518e58142b5db46f..080f093f2c01740b40596563d4573399e1dc6d08 100644 --- a/test/lint/pylint/requirements.txt +++ b/test/lint/pylint/requirements.txt @@ -3,3 +3,4 @@ pylint pylint-flask-sqlalchemy pylint-flask oic +ory-kratos-client