This is an automated email from the ASF dual-hosted git repository.
mpochatkin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 09072d6d432 IGNITE-27664 Remove unnecessary sanity check dependency
from tests (#7475)
09072d6d432 is described below
commit 09072d6d43246b74ec186a42c4dca4299217157f
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Thu Jan 29 15:18:16 2026 +0300
IGNITE-27664 Remove unnecessary sanity check dependency from tests (#7475)
---
.teamcity/test/template_types/RunTests.kt | 3 ---
1 file changed, 3 deletions(-)
diff --git a/.teamcity/test/template_types/RunTests.kt
b/.teamcity/test/template_types/RunTests.kt
index 94c7098dfbe..2a02fd7b445 100644
--- a/.teamcity/test/template_types/RunTests.kt
+++ b/.teamcity/test/template_types/RunTests.kt
@@ -2,7 +2,6 @@ package test.template_types
import jetbrains.buildServer.configs.kotlin.BuildType
import org.apache.ignite.teamcity.Teamcity.Companion.getId
-import test.build_types.RunSanityCheck
class RunTests(private val tests: Tests, private val suiteId: String =
tests.configuration.suiteId) : BuildType({
name = "> Run :: $suiteId Tests"
@@ -10,8 +9,6 @@ class RunTests(private val tests: Tests, private val suiteId:
String = tests.con
id(getId(this::class, name, true))
dependencies {
- snapshot(RunSanityCheck) {}
-
for (test in tests.modules) {
snapshot(TestsModule(tests.configuration, test)) {}
}