From 10c4b095859b4a81179012ee4dab977905ccfcb4 Mon Sep 17 00:00:00 2001 From: "Mateusz \"Serafin\" Gajewski" Date: Wed, 25 Oct 2023 17:50:29 +0200 Subject: [PATCH] Skip testing JDBC compatibility for versions 422-424 --- .../trino-test-jdbc-compatibility-old-driver/bin/run_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/trino-test-jdbc-compatibility-old-driver/bin/run_tests.sh b/testing/trino-test-jdbc-compatibility-old-driver/bin/run_tests.sh index e4d9bbe66dd9..0d456f52e852 100755 --- a/testing/trino-test-jdbc-compatibility-old-driver/bin/run_tests.sh +++ b/testing/trino-test-jdbc-compatibility-old-driver/bin/run_tests.sh @@ -26,7 +26,8 @@ fi echo "Testing every ${version_step}. version between ${first_tested_version} and ${previous_released_version}" # 404 was skipped -tested_versions=$(seq "${first_tested_version}" ${version_step} "${previous_released_version}" | grep -vx 404) +# 422-424 depend on the incompatible version of the open-telemetry semantic conventions used while invoking tests +tested_versions=$(seq "${first_tested_version}" ${version_step} "${previous_released_version}" | grep -vx '404\|42[234]') if (( (previous_released_version - first_tested_version) % version_step != 0 )); then tested_versions="${tested_versions} ${previous_released_version}"