aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoriaz1607 <iaz1607@yandex-team.com>2023-02-22 10:09:19 +0300
committeriaz1607 <iaz1607@yandex-team.com>2023-02-22 10:09:19 +0300
commit368418950cce468195f0c6ec1e9b8933e4e88e51 (patch)
tree7d2d0cd36bd3e2ad2459942518c421c4ec38657a
parent359b230816c617a5d44a9f12564b17cc6a058a46 (diff)
downloadydb-368418950cce468195f0c6ec1e9b8933e4e88e51.tar.gz
Fix pytest -k
-rw-r--r--library/python/pytest/plugins/collection.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/python/pytest/plugins/collection.py b/library/python/pytest/plugins/collection.py
index 5ee0c621a7..aa3f51cfef 100644
--- a/library/python/pytest/plugins/collection.py
+++ b/library/python/pytest/plugins/collection.py
@@ -20,6 +20,7 @@ class LoadedModule(_pytest.python.Module):
self.config = parent.config
self.keywords = {}
self.own_markers = []
+ self.extra_keyword_matches = set()
self.fspath = py.path.local()
@classmethod