Skip to content

Commit c1373e2

Browse files
authored
Include init files in sybil (#96)
2 parents 66c64a9 + ae978c3 commit c1373e2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/frequenz/client/conftest.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@
1010
from frequenz.repo.config.pytest import examples
1111
from sybil import Sybil
1212

13-
pytest_collect_file = Sybil(**examples.get_sybil_arguments()).pytest()
13+
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

Comments
 (0)