We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b58024 commit e5b0de4Copy full SHA for e5b0de4
.github/workflows/python.yml
@@ -14,4 +14,4 @@ jobs:
14
- name: Lint
15
run: |
16
pip install flake8
17
- flake8 --ignore E501 src/
+ flake8 --ignore E501,E402 src/
Dockerfile
@@ -6,7 +6,7 @@ ENV PYTHONDONTWRITEBYTECODE 1
6
WORKDIR /app
7
# We are installing a dependency
8
ADD requirements.txt /app/requirements.txt
9
-RUN apk add --no-cache g++ zlib-dev make && pip3 install -r /app/requirements.txt
+RUN apk add --no-cache g++ zlib-dev make git && pip3 install -r /app/requirements.txt
10
11
ADD src/* /app/
12
ENV PYTHONPATH /app
0 commit comments