From 3c133bbedfc99e311cebaadf0423422071381750 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Tue, 28 Feb 2017 15:05:25 +0100 Subject: [PATCH] Disable IT PurgeTest QA tests have some false-positives on CIX infrastructure with category4 on postgres. Some DB connections are kept open and job is stuck. Root cause seems to be the direct DB connection from PurgeTest via Orchestrator. --- it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java b/it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java index 1f6cb2da750..72a549b43c9 100644 --- a/it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java +++ b/it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java @@ -32,6 +32,7 @@ import org.apache.commons.lang.time.DateFormatUtils; import org.apache.commons.lang.time.DateUtils; import org.junit.Before; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ErrorCollector; @@ -49,6 +50,7 @@ import static util.ItUtils.newAdminWsClient; import static util.ItUtils.runProjectAnalysis; import static util.ItUtils.setServerProperty; +@Ignore public class PurgeTest { private static final String COUNT_FILE_MEASURES = "project_measures pm, projects p where p.uuid = pm.component_uuid and p.scope='FIL'"; -- 2.39.5