diff --git a/tests/integration/host/build.gradle.kts b/tests/integration/host/build.gradle.kts index 7a3bc19c..ea75180b 100644 --- a/tests/integration/host/build.gradle.kts +++ b/tests/integration/host/build.gradle.kts @@ -73,8 +73,6 @@ tasks.register("test-python-3.11-mysql") { systemProperty("exclude-multi-az-cluster", "true") systemProperty("exclude-multi-az-instance", "true") systemProperty("exclude-bg", "true") - systemProperty("exclude-traces-telemetry", "true") - systemProperty("exclude-metrics-telemetry", "true") systemProperty("exclude-pg-driver", "true") systemProperty("exclude-pg-engine", "true") } @@ -106,8 +104,6 @@ tasks.register("test-python-3.12-mysql") { systemProperty("exclude-python-3-13", "true") systemProperty("exclude-multi-az-cluster", "true") systemProperty("exclude-multi-az-instance", "true") - systemProperty("exclude-traces-telemetry", "true") - systemProperty("exclude-metrics-telemetry", "true") systemProperty("exclude-bg", "true") systemProperty("exclude-pg-driver", "true") systemProperty("exclude-pg-engine", "true") @@ -141,8 +137,6 @@ tasks.register("test-python-3.13-mysql") { systemProperty("exclude-multi-az-cluster", "true") systemProperty("exclude-multi-az-instance", "true") systemProperty("exclude-bg", "true") - systemProperty("exclude-traces-telemetry", "true") - systemProperty("exclude-metrics-telemetry", "true") systemProperty("exclude-pg-driver", "true") systemProperty("exclude-pg-engine", "true") } diff --git a/tests/integration/host/src/test/java/integration/TargetPythonVersion.java b/tests/integration/host/src/test/java/integration/TargetPythonVersion.java index 31e0edd7..f6ac5bc0 100644 --- a/tests/integration/host/src/test/java/integration/TargetPythonVersion.java +++ b/tests/integration/host/src/test/java/integration/TargetPythonVersion.java @@ -18,6 +18,5 @@ public enum TargetPythonVersion { PYTHON_3_11, - PYTHON_3_12, - PYTHON_3_13 + PYTHON_3_8 } diff --git a/tests/integration/host/src/test/java/integration/host/TestEnvironmentProvider.java b/tests/integration/host/src/test/java/integration/host/TestEnvironmentProvider.java index e5849337..b35df69c 100644 --- a/tests/integration/host/src/test/java/integration/host/TestEnvironmentProvider.java +++ b/tests/integration/host/src/test/java/integration/host/TestEnvironmentProvider.java @@ -149,6 +149,12 @@ public Stream provideTestTemplateInvocationContex if (targetPythonVersion == TargetPythonVersion.PYTHON_3_13 && config.excludePython313) { continue; } + if (targetPythonVersion == TargetPythonVersion.PYTHON_3_12 && config.excludePython312) { + continue; + } + if (targetPythonVersion == TargetPythonVersion.PYTHON_3_13 && config.excludePython313) { + continue; + } for (boolean withBlueGreenFeature : Arrays.asList(true, false)) { if (!withBlueGreenFeature) {