diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2023-02-22 10:09:19 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2023-02-22 10:09:19 +0300 |
commit | 368418950cce468195f0c6ec1e9b8933e4e88e51 (patch) | |
tree | 7d2d0cd36bd3e2ad2459942518c421c4ec38657a | |
parent | 359b230816c617a5d44a9f12564b17cc6a058a46 (diff) | |
download | ydb-368418950cce468195f0c6ec1e9b8933e4e88e51.tar.gz |
Fix pytest -k
-rw-r--r-- | library/python/pytest/plugins/collection.py | 1 |
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 |