summaryrefslogtreecommitdiffstats
path: root/build/plugins
diff options
context:
space:
mode:
authoralevitskii <[email protected]>2024-06-25 19:42:27 +0300
committeralevitskii <[email protected]>2024-06-25 19:55:36 +0300
commit3cbbbe56c16926b31ea1dbfbb784f8cc9fdb533e (patch)
tree00983345cb7a7b9852ef4906f38e355f794e5eba /build/plugins
parent2e17cba644a3952dc3e60ea425faf27d553f5e63 (diff)
break down suites into reg/style
break down suites into reg/style cdf3cf7dbb6500571079c649ebfcf3d577d2d42d
Diffstat (limited to 'build/plugins')
-rw-r--r--build/plugins/lib/test_const/__init__.py39
1 files changed, 6 insertions, 33 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py
index c3dca2af747..64f4a9267dd 100644
--- a/build/plugins/lib/test_const/__init__.py
+++ b/build/plugins/lib/test_const/__init__.py
@@ -66,39 +66,6 @@ BUILD_FLAGS_ALLOWED_IN_CONTEXT = {
'USE_SYSTEM_PYTHON',
}
-STYLE_TEST_TYPES = [
- "classpath.clash",
- "clang_tidy",
- "eslint",
- "gofmt",
- "govet",
- "java.style",
- "ktlint",
- "py2_flake8",
- "flake8",
- "black",
- "ruff",
- "tsc_typecheck",
-]
-
-REGULAR_TEST_TYPES = [
- "benchmark",
- "boost_test",
- "exectest",
- "fuzz",
- "g_benchmark",
- "go_bench",
- "go_test",
- "gtest",
- "hermione",
- "java",
- "jest",
- "py2test",
- "py3test",
- "pytest",
- "unittest",
-]
-
TEST_NODE_OUTPUT_RESULTS = [TESTING_OUT_TAR_NAME, YT_RUN_TEST_TAR_NAME]
# kvm
@@ -239,6 +206,12 @@ class Enum(object):
return [v for k, v in cls.__dict__.items() if not k.startswith("_")]
+class SuiteClassType(Enum):
+ UNCLASSIFIED = '0'
+ REGULAR = '1'
+ STYLE = '2'
+
+
class TestRequirements(Enum):
Container = 'container'
Cpu = 'cpu'