Issue 306: Use the names of all the parents in the chain for matching, except the Instance objects.
This commit is contained in:
parent
72afbbbd71
commit
60906f7a46
|
@ -130,7 +130,7 @@ def matchkeyword(colitem, keywordexpr):
|
||||||
|
|
||||||
# Add the names of the current item and any parent items
|
# Add the names of the current item and any parent items
|
||||||
for item in colitem.listchain():
|
for item in colitem.listchain():
|
||||||
if isinstance(item, pytest.Class) or isinstance(item, pytest.Function):
|
if not isinstance(item, pytest.Instance):
|
||||||
mapped_names.append(item.name)
|
mapped_names.append(item.name)
|
||||||
|
|
||||||
# Add the names added as extra keywords to current or parent items
|
# Add the names added as extra keywords to current or parent items
|
||||||
|
|
Loading…
Reference in New Issue