aboutsummaryrefslogtreecommitdiffstats
path: root/it
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-02-28 15:05:25 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-02-28 15:05:25 +0100
commit3c133bbedfc99e311cebaadf0423422071381750 (patch)
treee99d3ef95b286a7c3e3b04157cccce0b00ffb4d3 /it
parent0b2660c4879ddc964e804705b0ce98141239ab92 (diff)
downloadsonarqube-3c133bbedfc99e311cebaadf0423422071381750.tar.gz
sonarqube-3c133bbedfc99e311cebaadf0423422071381750.zip
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.
Diffstat (limited to 'it')
-rw-r--r--it/it-tests/src/test/java/it/dbCleaner/PurgeTest.java2
1 files changed, 2 insertions, 0 deletions
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'";