diff options
Diffstat (limited to 'library/python')
-rw-r--r-- | library/python/testing/style/rules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/style/rules.py b/library/python/testing/style/rules.py index 1f4d283769..0de9dcdbca 100644 --- a/library/python/testing/style/rules.py +++ b/library/python/testing/style/rules.py @@ -16,7 +16,7 @@ def _path_skip_reason(path, skip_links=True): if '/generated/' in path: return "path '{}' contains '/generated/'".format(path) - if path and '/contrib/' in path: + if path and '/contrib/' in path and '/.yandex_meta/' not in path: return "path '{}' contains '/contrib/'".format(path) if path and '/vendor/' in path: |