Skip to content

Commit bac1721

Browse files
authored
Apply new repo-config 0.11 templates (#44)
2 parents cd08b76 + a701a23 commit bac1721

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
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

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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]
156158
testpaths = ["tests", "src"]
157159
asyncio_mode = "auto"
160+
asyncio_default_fixture_loop_scope = "function"
158161
required_plugins = ["pytest-asyncio", "pytest-mock"]
159162

160163
[tool.mypy]

0 commit comments

Comments
 (0)