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.
2 parents 66c64a9 + ae978c3 commit c1373e2Copy full SHA for c1373e2
src/frequenz/client/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()
+sybil_arguments = examples.get_sybil_arguments()
14
+# Upstream includes "excludes" to work around a bug in Sybil.
15
+# This bug seems to be fixed in our version of Sybil, so we remove it.
16
+sybil_arguments.pop("excludes")
17
+
18
+pytest_collect_file = Sybil(**sybil_arguments).pytest()
0 commit comments