We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9797cd5 commit 1d53c1eCopy full SHA for 1d53c1e
src/frequenz/client/electricity_trading/conftest.py
@@ -10,4 +10,9 @@
10
from frequenz.repo.config.pytest import examples
11
from sybil import Sybil
12
13
-pytest_collect_file = Sybil(**examples.get_sybil_arguments()).pytest()
+args = examples.get_sybil_arguments()
14
+# Pop "excludes" which was added upstream to work around a sybil bug
15
+# with __init__.py files
16
+args.pop("excludes", None)
17
+
18
+pytest_collect_file = Sybil(**args).pytest()
0 commit comments