diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-07 13:20:23 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-07 13:20:23 +0300 |
commit | 03c0f57ecbe72821843b926b8e731b81e689bacd (patch) | |
tree | 6d175804349b966075ab212cb9e1290fd70bfcb7 /library/python/pytest/plugins | |
parent | 2b3c2a9f349d0ab9e4dc2ef8d5ed293d2d970424 (diff) | |
download | ydb-03c0f57ecbe72821843b926b8e731b81e689bacd.tar.gz |
intermediate changes
ref:44cfacf4cc6e35eb3189b83a81fde1f7844d175b
Diffstat (limited to 'library/python/pytest/plugins')
-rw-r--r-- | library/python/pytest/plugins/ya.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/python/pytest/plugins/ya.py b/library/python/pytest/plugins/ya.py index 1f1bf4cb59..d85c391435 100644 --- a/library/python/pytest/plugins/ya.py +++ b/library/python/pytest/plugins/ya.py @@ -81,6 +81,9 @@ class CustomImporter(object): def __init__(self, roots): self._roots = roots + def find_spec(self, fullname, path, target=None): + return None + def find_module(self, fullname, package_path=None): for path in self._roots: full_path = self._get_module_path(path, fullname) |