Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/frequenz/quantities/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Loading