File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
containers/test-installation Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 55
66FROM --platform=${TARGETPLATFORM} python:3.11-slim
77
8- RUN python -m pip install --upgrade --no-cache-dir pip
8+ RUN apt-get update -y && \
9+ apt-get install --no-install-recommends -y \
10+ git && \
11+ apt-get clean && \
12+ rm -rf /var/lib/apt/lists/* && \
13+ python -m pip install --upgrade --no-cache-dir pip
914
1015COPY dist dist
1116RUN pip install dist/*.whl && \
Original file line number Diff line number Diff line change @@ -117,6 +117,8 @@ jobs:
117117 steps :
118118 - name : Fetch sources
119119 uses : actions/checkout@v4
120+ with :
121+ submodules : true
120122
121123 - name : Set up QEMU
122124 uses : docker/setup-qemu-action@v3
Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ disable = [
132132 # it is a type-check, for which we already have mypy.
133133 " unsubscriptable-object" ,
134134 # Checked by flake8
135+ " redefined-outer-name" ,
136+ " unused-import" ,
135137 " line-too-long" ,
136138 " unused-variable" ,
137139 " unnecessary-lambda-assignment" ,
You can’t perform that action at this time.
0 commit comments