From 1ff4c0b20309d05f6cf8fca35d8f7d7c53bce570 Mon Sep 17 00:00:00 2001 From: "Mathias L. Baumann" Date: Wed, 2 Oct 2024 14:30:06 +0200 Subject: [PATCH] Make sybil test init files Signed-off-by: Mathias L. Baumann --- src/frequenz/quantities/conftest.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/frequenz/quantities/conftest.py b/src/frequenz/quantities/conftest.py index c84af78..565c99b 100644 --- a/src/frequenz/quantities/conftest.py +++ b/src/frequenz/quantities/conftest.py @@ -10,4 +10,11 @@ from frequenz.repo.config.pytest import examples from sybil import Sybil -pytest_collect_file = Sybil(**examples.get_sybil_arguments()).pytest() +args = examples.get_sybil_arguments() +# Exclude "excludes" from the arguments +# as it was used to work around a bug that +# is no longer an issue. +args.pop("excludes") + + +pytest_collect_file = Sybil(**args).pytest()