From d827df7b6f74b692a7bdcecce7cc6220f32bc44f Mon Sep 17 00:00:00 2001 From: Christian Zentgraf Date: Tue, 21 Jan 2025 08:21:46 -0800 Subject: [PATCH] [native] Remove flaky spark tests to stabilize CI When we added the Spark tests it turns out another class is flaky and an issue has been opened. The goal was to run as many tests as possible and exclude known flaky tests until they can be addressed as they can fail the CI pipeline. --- .github/workflows/prestocpp-linux-build-and-unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prestocpp-linux-build-and-unit-test.yml b/.github/workflows/prestocpp-linux-build-and-unit-test.yml index 2744bbad5ab65..b60fc65ae732d 100644 --- a/.github/workflows/prestocpp-linux-build-and-unit-test.yml +++ b/.github/workflows/prestocpp-linux-build-and-unit-test.yml @@ -242,7 +242,7 @@ jobs: export TESTCLASSES=${TESTCLASSES#,} # Override the possible test classes with test classes known to pass from the previous CI. # A number of newly added tests are flaky and are disabled. - export TESTCLASSES=TestPrestoSparkExpressionCompiler,TestPrestoSparkNativeBitwiseFunctionQueries,TestPrestoSparkNativeTpchConnectorQueries,TestPrestoSparkNativeSimpleQueries,TestPrestoSparkSqlFunctions,TestPrestoSparkNativeTpchQueries,TestPrestoSparkNativeArrayFunctionQueries + export TESTCLASSES=TestPrestoSparkExpressionCompiler,TestPrestoSparkNativeBitwiseFunctionQueries,TestPrestoSparkNativeTpchConnectorQueries,TestPrestoSparkNativeSimpleQueries,TestPrestoSparkSqlFunctions,TestPrestoSparkNativeTpchQueries echo "TESTCLASSES = $TESTCLASSES" mvn test \ ${MAVEN_TEST} \