Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modules and tests are PostgreSQL-only #24

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions module.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Description: A module defining general X/Y plottable assays and tools for workin
URL: https://github.com/LabKey/signalData
License: Apache 2.0
LicenseURL: http://www.apache.org/licenses/LICENSE-2.0
SupportedDatabases: pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.labkey.test.pages.signaldata.SignalDataRunViewerPage;
import org.labkey.test.pages.signaldata.SignalDataUploadPage;
import org.labkey.test.util.Ext4Helper;
import org.labkey.test.util.PostgresOnlyTest;
import org.labkey.test.util.signaldata.SignalDataInitializer;
import org.openqa.selenium.WebElement;

Expand All @@ -38,7 +39,7 @@
import static org.junit.Assert.assertEquals;

@Category({SignalData.class, Git.class})
public class SignalDataRawTest extends BaseWebDriverTest
public class SignalDataRawTest extends BaseWebDriverTest implements PostgresOnlyTest
{
private static final String PROJECT_NAME = "SignalDataRawTest";
private static final String DEFAULT_RUN = "TestRun001";
Expand Down