Reintroduce default value for ignore_args argument of FixtureManager.getfixtureclosure
Fix #11868
This commit is contained in:
parent
cb57bf50b1
commit
571e50634c
|
@ -0,0 +1 @@
|
|||
Reintroduced the default value for the ``ignore_args`` of internal ``FixtureManager.getfixtureclosure``: even though it is an internal API, it was changed by accident in 8.0.0 and this broken a number of plugins.
|
|
@ -1524,7 +1524,7 @@ class FixtureManager:
|
|||
self,
|
||||
parentnode: nodes.Node,
|
||||
initialnames: Tuple[str, ...],
|
||||
ignore_args: AbstractSet[str],
|
||||
ignore_args: AbstractSet[str] = frozenset(),
|
||||
) -> Tuple[List[str], Dict[str, Sequence[FixtureDef[Any]]]]:
|
||||
# Collect the closure of all fixtures, starting with the given
|
||||
# fixturenames as the initial set. As we have to visit all
|
||||
|
|
Loading…
Reference in New Issue