We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97900e commit b74742eCopy full SHA for b74742e
1 file changed
Dockerfile
@@ -26,15 +26,15 @@ RUN export DEBIAN_FRONTEND=noninteractive; \
26
dbus \
27
python3-gi
28
29
-RUN pip3 install yapf flake8 && \
+RUN pip3 install 'yapf==0.31' 'flake8==4.0.1' && \
30
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
31
for py in python3 python3.6 python3.7 python3.9 python3.10; do \
32
${py} get-pip.py; \
33
PYTHONPATH=/usr/lib/${py}/site-packages ${py} -m pip install \
34
- pytest \
35
- pytest-asyncio \
36
- pytest-timeout \
37
- pytest-cov; \
+ 'pytest==6.2.5' \
+ 'pytest-asyncio==0.16.0' \
+ 'pytest-timeout==2.0.2' \
+ 'pytest-cov==3.0.0'; \
38
done
39
40
ADD . /app
0 commit comments