aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/lib/test_const
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2025-03-04 16:15:41 +0000
committerAlexander Smirnov <alex@ydb.tech>2025-03-04 16:15:41 +0000
commitb21a377d1f5b24149cf65fd1f8feb44411ae38f9 (patch)
tree0459a651275d60cf60489d8142f20a8bd5e6a199 /build/plugins/lib/test_const
parent827cd39b843ead1adfaa20f8a55e2e17da62a4eb (diff)
parent00325857a11f51ad6b43a4d35f57e85e06866ab6 (diff)
downloadydb-b21a377d1f5b24149cf65fd1f8feb44411ae38f9.tar.gz
Merge pull request #15307 from ydb-platform/merge-libs-250304-1328
Diffstat (limited to 'build/plugins/lib/test_const')
-rw-r--r--build/plugins/lib/test_const/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py
index 293b514d01..1319ec0ead 100644
--- a/build/plugins/lib/test_const/__init__.py
+++ b/build/plugins/lib/test_const/__init__.py
@@ -231,6 +231,7 @@ class TestRequirements(Enum):
Dns = 'dns'
Kvm = 'kvm'
Network = 'network'
+ PortoLayers = 'porto_layers'
Ram = 'ram'
RamDisk = 'ram_disk'
SbVault = 'sb_vault'
@@ -450,6 +451,7 @@ class PythonLinterName(Enum):
class CppLinterName(Enum):
ClangFormat = "clang_format"
ClangFormatYT = "clang_format_yt"
+ ClangFormat15 = "clang_format_15"
class DefaultLinterConfig(Enum):
@@ -464,6 +466,7 @@ class LinterConfigsValidationRules(Enum):
LINTER_CONFIG_TYPES = {
CppLinterName.ClangFormat: (".clang-format",),
+ CppLinterName.ClangFormat15: (".clang-format",),
CppLinterName.ClangFormatYT: (".clang-format",),
PythonLinterName.Black: ("pyproject.toml",),
PythonLinterName.Ruff: ("pyproject.toml", "ruff.toml"),