aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins
diff options
context:
space:
mode:
authorsnowball <snowball@yandex-team.com>2024-04-20 06:02:22 +0300
committersnowball <snowball@yandex-team.com>2024-04-20 06:14:15 +0300
commita354b930f9b8de59bcf45f7fae8c585dd29c8cc4 (patch)
tree42553492eccdabea9d0bb088e20d6cfa2f271d0b /build/plugins
parent7d879f483bb7627ba647d6087953835bd7234dc9 (diff)
downloadydb-a354b930f9b8de59bcf45f7fae8c585dd29c8cc4.tar.gz
Remove ya:nofuse from build/; devtools/ya/ and sandbox/projects/devtools/YaTestParent2/
497515ebe29440247c5e801fc33d8bce80f2f3ff
Diffstat (limited to 'build/plugins')
-rw-r--r--build/plugins/lib/test_const/__init__.py1
-rw-r--r--build/plugins/ytest.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py
index b3c427d148..02cb6eefc9 100644
--- a/build/plugins/lib/test_const/__init__.py
+++ b/build/plugins/lib/test_const/__init__.py
@@ -402,7 +402,6 @@ class YaTestTags(Enum):
HugeLogs = "ya:huge_logs"
Manual = "ya:manual"
MapRootUser = "ya:map_root_user"
- NoFuse = "ya:nofuse"
NoGracefulShutdown = "ya:no_graceful_shutdown"
Norestart = "ya:norestart"
Noretries = "ya:noretries"
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py
index e995e534a7..e60e71c599 100644
--- a/build/plugins/ytest.py
+++ b/build/plugins/ytest.py
@@ -192,8 +192,6 @@ def validate_test(unit, kw):
else:
if is_force_sandbox:
errors.append('ya:force_sandbox can be used with LARGE tests only')
- if consts.YaTestTags.NoFuse in tags:
- errors.append('ya:nofuse can be used with LARGE tests only')
if consts.YaTestTags.Privileged in tags:
errors.append("ya:privileged can be used with LARGE tests only")
if in_autocheck and size == consts.TestSize.Large: