File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed
containers/test-installation Expand file tree Collapse file tree 4 files changed +13
-2
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 2525# - changed-files:
2626# - any-glob-to-any-file:
2727# - "src/**/*.py"
28- # - all-glob -to-all-file :
28+ # - all-globs -to-all-files :
2929# - "!src/__init__.py"
3030#
3131# Please have in mind that that the part:xxx labels need to
Original file line number Diff line number Diff line change @@ -150,11 +150,14 @@ disable = [
150150 " unused-variable" ,
151151 # Checked by mypy
152152 " no-member" ,
153+ " possibly-used-before-assignment" ,
154+ " no-name-in-module" ,
153155]
154156
155157[tool .pytest .ini_options ]
156158testpaths = [" tests" , " src" ]
157159asyncio_mode = " auto"
160+ asyncio_default_fixture_loop_scope = " function"
158161required_plugins = [" pytest-asyncio" , " pytest-mock" ]
159162
160163[tool .mypy ]
You can’t perform that action at this time.
0 commit comments