@@ -546,6 +546,35 @@ integTest {
546546 // Exclude this IT, because they executed in another task (:integTestWithSecurity)
547547 exclude ' org/opensearch/sql/security/**'
548548
549+ // Workaround for Gradle 9.4.1 bug: TestEventReporterAsListener crashes with ClassCastException
550+ // when encountering class-level @Ignore annotations. These classes were already skipped by JUnit;
551+ // this moves the skip to the Gradle layer to avoid the buggy bridge.
552+ // Remove once Gradle ships a fix (not fixed as of 9.5.0).
553+ exclude ' org/opensearch/sql/calcite/remote/CalciteInformationSchemaCommandIT.class'
554+ exclude ' org/opensearch/sql/calcite/remote/CalciteJsonFunctionsIT.class'
555+ exclude ' org/opensearch/sql/calcite/remote/CalcitePrometheusDataSourceCommandsIT.class'
556+ exclude ' org/opensearch/sql/calcite/remote/CalciteShowDataSourcesCommandIT.class'
557+ exclude ' org/opensearch/sql/legacy/AggregationIT.class'
558+ exclude ' org/opensearch/sql/legacy/DateFormatIT.class'
559+ exclude ' org/opensearch/sql/legacy/DateFunctionsIT.class'
560+ exclude ' org/opensearch/sql/legacy/HashJoinIT.class'
561+ exclude ' org/opensearch/sql/legacy/HavingIT.class'
562+ exclude ' org/opensearch/sql/legacy/JoinIT.class'
563+ exclude ' org/opensearch/sql/legacy/JSONRequestIT.class'
564+ exclude ' org/opensearch/sql/legacy/MathFunctionsIT.class'
565+ exclude ' org/opensearch/sql/legacy/MetricsIT.class'
566+ exclude ' org/opensearch/sql/legacy/MultiQueryIT.class'
567+ exclude ' org/opensearch/sql/legacy/NestedFieldQueryIT.class'
568+ exclude ' org/opensearch/sql/legacy/PreparedStatementIT.class'
569+ exclude ' org/opensearch/sql/legacy/QueryFunctionsIT.class'
570+ exclude ' org/opensearch/sql/legacy/QueryIT.class'
571+ exclude ' org/opensearch/sql/legacy/ShowIT.class'
572+ exclude ' org/opensearch/sql/legacy/SourceFieldIT.class'
573+ exclude ' org/opensearch/sql/legacy/SQLFunctionsIT.class'
574+ exclude ' org/opensearch/sql/legacy/SubqueryIT.class'
575+ exclude ' org/opensearch/sql/ppl/JsonFunctionsIT.class'
576+ exclude ' org/opensearch/sql/sql/ExpressionIT.class'
577+
549578 finalizedBy ' printIntegTestPaths'
550579}
551580
0 commit comments