diff options
author | elen-volodina <elen-volodina@yandex-team.com> | 2024-06-20 10:14:58 +0300 |
---|---|---|
committer | elen-volodina <elen-volodina@yandex-team.com> | 2024-06-20 10:26:21 +0300 |
commit | 515aa2dfa47824063f196b1af06264a0f393d8d5 (patch) | |
tree | 0fb858967c1dff86b613e642d4bd5ae5394abf0f | |
parent | 0e27976f1f76f92da5ef20d09d3698271e6867e8 (diff) | |
download | ydb-515aa2dfa47824063f196b1af06264a0f393d8d5.tar.gz |
extract lang from suites
fa65c6c6a08e799cbf7c372b8116776c64f499c6
-rw-r--r-- | build/plugins/lib/test_const/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py index 0bc08470b1..c3dca2af74 100644 --- a/build/plugins/lib/test_const/__init__.py +++ b/build/plugins/lib/test_const/__init__.py @@ -397,6 +397,13 @@ class ModuleLang(Enum): TS = "ts" +class NodeType(Enum): + TEST = "test" + TEST_AUX = "test-aux" + TEST_RESULTS = "test-results" + DOWNLOAD = "download" + + class TestRunExitCode(Enum): Skipped = 2 Failed = 3 |