add github depended tests to under repair group (#16001)
Signed-off-by: musienko maksym <mmusiien@redhat.com>7.20.x
parent
f2273b26df
commit
c054eeaab5
|
|
@ -12,6 +12,7 @@
|
|||
package org.eclipse.che.selenium.dashboard;
|
||||
|
||||
import static org.eclipse.che.commons.lang.NameGenerator.generate;
|
||||
import static org.eclipse.che.selenium.core.TestGroup.UNDER_REPAIR;
|
||||
import static org.eclipse.che.selenium.core.utils.WaitUtils.sleepQuietly;
|
||||
import static org.eclipse.che.selenium.pageobject.dashboard.ProjectSourcePage.Sources.GITHUB;
|
||||
import static org.testng.AssertJUnit.assertTrue;
|
||||
|
|
@ -40,6 +41,7 @@ import org.testng.annotations.AfterClass;
|
|||
import org.testng.annotations.BeforeClass;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {UNDER_REPAIR})
|
||||
public class ImportProjectFromGitHubTest {
|
||||
private static final String WORKSPACE =
|
||||
generate(ImportProjectFromGitHubTest.class.getSimpleName(), 4);
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
*/
|
||||
package org.eclipse.che.selenium.git;
|
||||
|
||||
import static org.eclipse.che.selenium.core.TestGroup.UNDER_REPAIR;
|
||||
import static org.eclipse.che.selenium.core.utils.WaitUtils.sleepQuietly;
|
||||
import static org.eclipse.che.selenium.pageobject.dashboard.ProjectSourcePage.Sources.GITHUB;
|
||||
import static org.testng.Assert.assertEquals;
|
||||
|
|
@ -40,7 +41,7 @@ import org.testng.annotations.BeforeClass;
|
|||
import org.testng.annotations.Test;
|
||||
|
||||
/** @author Aleksandr Shmaraev */
|
||||
@Test(groups = TestGroup.GITHUB)
|
||||
@Test(groups = {UNDER_REPAIR})
|
||||
public class AuthorizeOnGithubFromDashboardTest {
|
||||
private static final Logger LOG =
|
||||
LoggerFactory.getLogger(AuthorizeOnGithubFromDashboardTest.class);
|
||||
|
|
|
|||
Loading…
Reference in New Issue