From 144cff56d95d34fe58aa1fcad2551ccb7d677815 Mon Sep 17 00:00:00 2001 From: James Netherton Date: Fri, 12 Jun 2020 08:02:22 +0100 Subject: [PATCH] Temporarily disable debezium tests until #1311 and associtated issues are fixed --- .github/test-categories.yaml | 2 +- integration-tests/pom.xml | 3 +++ tooling/scripts/validate-github-workflows.groovy | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/test-categories.yaml b/.github/test-categories.yaml index 1f99bda571b3..9772dd79f0e2 100644 --- a/.github/test-categories.yaml +++ b/.github/test-categories.yaml @@ -33,7 +33,7 @@ main: - main-xml-jaxb database: - couchdb - - debezium +# - debezium - influxdb - jdbc - kudu diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 70b0f1c45690..8c0d57b1e6d3 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -82,7 +82,10 @@ csv dataformat dataformats-json + dozer elasticsearch-rest exec diff --git a/tooling/scripts/validate-github-workflows.groovy b/tooling/scripts/validate-github-workflows.groovy index 4b408dee3525..6b13e788891a 100644 --- a/tooling/scripts/validate-github-workflows.groovy +++ b/tooling/scripts/validate-github-workflows.groovy @@ -29,7 +29,7 @@ final Path jobDefPath = treeRootDir.resolve(testCategoriesDefRelPath) final Set executedBaseNames = [] as Set // Add any ignored itest modules here. Or prefix the module name with '#' to disable it -final List excludedModules = ['fhir', 'kubernetes', 'support'] as List +final List excludedModules = ['debezium', 'fhir', 'kubernetes', 'support'] as List final Yaml parser = new Yaml() def testCategoryConfig = parser.load((jobDefPath.toFile()).text)