File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
containers/test-installation Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 33# This Dockerfile is used to test the installation of the python package in
44# multiple platforms in the CI. It is not used to build the package itself.
55
6- FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+ FROM python:3.11-slim
77
88RUN apt-get update -y && \
99 apt-get install --no-install-recommends -y \
Original file line number Diff line number Diff line change @@ -39,3 +39,11 @@ updates:
3939 labels :
4040 - " part:tooling"
4141 - " type:tech-debt"
42+ groups :
43+ compatible :
44+ update-types :
45+ - " minor"
46+ - " patch"
47+ artifacts :
48+ patterns :
49+ - " actions/*-artifact"
Original file line number Diff line number Diff line change @@ -141,6 +141,8 @@ disable = [
141141 " unsubscriptable-object" ,
142142 # Checked by mypy
143143 " no-member" ,
144+ " possibly-used-before-assignment" ,
145+ " no-name-in-module" ,
144146 # Checked by flake8
145147 " f-string-without-interpolation" ,
146148 " redefined-outer-name" ,
@@ -154,6 +156,7 @@ disable = [
154156[tool .pytest .ini_options ]
155157testpaths = [" tests" , " src" ]
156158asyncio_mode = " auto"
159+ asyncio_default_fixture_loop_scope = " function"
157160required_plugins = [" pytest-asyncio" , " pytest-mock" ]
158161
159162[tool .mypy ]
You can’t perform that action at this time.
0 commit comments