From 502a4e02618dd1e81201bfcdf863ab95f0582e5a Mon Sep 17 00:00:00 2001 From: Aleksandr Shmaraiev Date: Thu, 10 Oct 2019 14:16:24 +0300 Subject: [PATCH] Disable java selenium e2e test from test suite --- .../factory/DirectUrlFactoryWithSpecificBranchTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/selenium/che-selenium-test/src/test/java/org/eclipse/che/selenium/factory/DirectUrlFactoryWithSpecificBranchTest.java b/selenium/che-selenium-test/src/test/java/org/eclipse/che/selenium/factory/DirectUrlFactoryWithSpecificBranchTest.java index a093bc1df5a..d0ebb18a05f 100644 --- a/selenium/che-selenium-test/src/test/java/org/eclipse/che/selenium/factory/DirectUrlFactoryWithSpecificBranchTest.java +++ b/selenium/che-selenium-test/src/test/java/org/eclipse/che/selenium/factory/DirectUrlFactoryWithSpecificBranchTest.java @@ -14,6 +14,7 @@ import static org.eclipse.che.selenium.core.CheSeleniumSuiteModule.AUXILIARY; import static org.eclipse.che.selenium.core.TestGroup.GITHUB; import static org.eclipse.che.selenium.core.TestGroup.OPENSHIFT; +import static org.eclipse.che.selenium.core.TestGroup.UNDER_REPAIR; import static org.eclipse.che.selenium.core.constant.TestTimeoutsConstants.UPDATING_PROJECT_TIMEOUT_SEC; import static org.testng.AssertJUnit.assertEquals; @@ -36,7 +37,7 @@ import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; -@Test(groups = {GITHUB, OPENSHIFT}) +@Test(groups = {GITHUB, OPENSHIFT, UNDER_REPAIR}) public class DirectUrlFactoryWithSpecificBranchTest { private static final Logger LOG = LoggerFactory.getLogger(DirectUrlFactoryWithSpecificBranchTest.class);