Skip to content

Commit 49927c1

Browse files
CRZbulabulaclaude
andcommitted
Stop running AINode (AIClusterIT) integration tests
AINode integration tests are temporarily disabled at the build and CI level, without touching any test source code: - integration-test/pom.xml: add the AIClusterIT category to excludedGroups in the AIClusterIT profile. includedGroups is kept so the profile stays scoped to the AINode tests only; excludedGroups takes precedence over includedGroups in maven-failsafe, so no AINode test is executed even when the profile is activated. - .github/workflows/cluster-it-1c1d1a.yml: remove the "Cluster IT - 1C1D1A / AINode" workflow. Its only job built AINode and ran the AIClusterIT integration tests, so it is no longer needed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 4e06a94 commit 49927c1

2 files changed

Lines changed: 7 additions & 65 deletions

File tree

.github/workflows/cluster-it-1c1d1a.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

integration-test/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,13 @@
544544
<activeByDefault>false</activeByDefault>
545545
</activation>
546546
<properties>
547-
<integrationTest.excludedGroups/>
547+
<!-- Temporarily exclude all AINode (AIClusterIT) integration tests.
548+
includedGroups is intentionally kept as AIClusterIT so this profile stays
549+
scoped to the AINode tests only - leaving it empty would make failsafe run
550+
every IT in this module. The matching excludedGroups then skips them, and
551+
because excludedGroups takes precedence over includedGroups, no AINode test
552+
is executed even when this profile is activated. -->
553+
<integrationTest.excludedGroups>org.apache.iotdb.itbase.category.AIClusterIT</integrationTest.excludedGroups>
548554
<integrationTest.includedGroups>org.apache.iotdb.itbase.category.AIClusterIT</integrationTest.includedGroups>
549555
<integrationTest.launchNodeInSameJVM>false</integrationTest.launchNodeInSameJVM>
550556
<integrationTest.randomSelectWriteNode>false</integrationTest.randomSelectWriteNode>

0 commit comments

Comments
 (0)