From e9f70e2070a94eb333ca715008404b893039cd12 Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Thu, 14 Nov 2024 11:24:58 -0800 Subject: [PATCH 1/2] Mark modules as PostgreSQL-only --- OConnorExperiments/module.properties | 1 + OConnorRepository/module.properties | 2 +- genotyping/module.properties | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/OConnorExperiments/module.properties b/OConnorExperiments/module.properties index 97407ec8..75263c11 100644 --- a/OConnorExperiments/module.properties +++ b/OConnorExperiments/module.properties @@ -1 +1,2 @@ ModuleClass: org.labkey.oconnorexperiments.OConnorExperimentsModule +SupportedDatabases: pgsql diff --git a/OConnorRepository/module.properties b/OConnorRepository/module.properties index f58ba80a..4919615b 100644 --- a/OConnorRepository/module.properties +++ b/OConnorRepository/module.properties @@ -1,3 +1,3 @@ Name: OConnorRepository RequiredServerVersion: 13.20 - +SupportedDatabases: pgsql diff --git a/genotyping/module.properties b/genotyping/module.properties index 74d88afa..811fc535 100644 --- a/genotyping/module.properties +++ b/genotyping/module.properties @@ -1 +1,2 @@ ModuleClass: org.labkey.genotyping.GenotypingModule +SupportedDatabases: pgsql From b02ffdcc8830c915c100fe00216d43a5cb132ad3 Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Thu, 14 Nov 2024 12:26:30 -0800 Subject: [PATCH 2/2] Mark tests as PostgreSQL-only --- .../test/src/org/labkey/test/tests/GenotypingBaseTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/genotyping/test/src/org/labkey/test/tests/GenotypingBaseTest.java b/genotyping/test/src/org/labkey/test/tests/GenotypingBaseTest.java index 70f3e675..78c22b81 100644 --- a/genotyping/test/src/org/labkey/test/tests/GenotypingBaseTest.java +++ b/genotyping/test/src/org/labkey/test/tests/GenotypingBaseTest.java @@ -28,6 +28,7 @@ import org.labkey.test.WebTestHelper; import org.labkey.test.util.DataRegionTable; import org.labkey.test.util.LogMethod; +import org.labkey.test.util.PostgresOnlyTest; import java.io.File; import java.io.IOException; @@ -35,7 +36,7 @@ import java.util.Collections; import java.util.List; -abstract public class GenotypingBaseTest extends BaseWebDriverTest +abstract public class GenotypingBaseTest extends BaseWebDriverTest implements PostgresOnlyTest { private static final File pipelineLoc = TestFileUtils.getSampleData("genotyping"); protected static int pipelineJobCount = 0;