add github depended tests to under repair group (#16001)

Signed-off-by: musienko maksym <mmusiien@redhat.com>
7.20.x
Maxim Musienko 2020-02-12 14:35:08 +02:00 committed by GitHub
parent f2273b26df
commit c054eeaab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -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);

View File

@ -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);