This is an automated email from the ASF dual-hosted git repository. CRZbulabula pushed a commit to branch ignore-ainode-tests in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit efa5a927f4a60aede469eb689614a42f57dcdb81 Author: Yongzao <[email protected]> AuthorDate: Thu Jun 18 11:47:26 2026 +0800 Exclude all AINode (AIClusterIT) integration tests from the build The AIClusterIT Maven profile is the only entry point that runs the AINode integration tests. Add the AIClusterIT category to excludedGroups in that profile so that, even when the profile is activated, no AINode test is executed (excludedGroups takes precedence over includedGroups in maven-failsafe). Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> --- integration-test/pom.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integration-test/pom.xml b/integration-test/pom.xml index 43b60fc371b..7c74ff98dda 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -544,7 +544,10 @@ <activeByDefault>false</activeByDefault> </activation> <properties> - <integrationTest.excludedGroups/> + <!-- Temporarily exclude all AINode (AIClusterIT) integration tests. + excludedGroups takes precedence over includedGroups, so even when this + profile is activated no AINode test will be executed. --> + <integrationTest.excludedGroups>org.apache.iotdb.itbase.category.AIClusterIT</integrationTest.excludedGroups> <integrationTest.includedGroups>org.apache.iotdb.itbase.category.AIClusterIT</integrationTest.includedGroups> <integrationTest.launchNodeInSameJVM>false</integrationTest.launchNodeInSameJVM> <integrationTest.randomSelectWriteNode>false</integrationTest.randomSelectWriteNode>
