Skip to content

Commit

Permalink
Merge pull request #410 from raul-arabaolaza/JENKINS-49263
Browse files Browse the repository at this point in the history
[JENKINS-49263] Remove flaky and no robust enough tests from SmokeTest Category
  • Loading branch information
olivergondza committed Feb 14, 2018
2 parents 8c74b90 + 9098f4a commit bdef2c3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/test/java/core/JenkinsDatabaseSecurityRealmTest.java
Expand Up @@ -60,7 +60,8 @@ public void setUp() {
}

@Test
@Category(SmokeTest.class)
//TODO Re enable category once JENKINS-49524 is done
//@Category(SmokeTest.class)
public void login_and_logout() {

User user = realm.signup().fullname(FULL_NAME).email(EMAIL).password(PWD).signup(NAME);
Expand Down
1 change: 0 additions & 1 deletion src/test/java/core/ScriptTest.java
Expand Up @@ -16,7 +16,6 @@ public class ScriptTest extends AbstractJUnitTest {
SlaveController slave;

@Test
@Category(SmokeTest.class)
public void execute_system_script() throws Exception {
String output = jenkins.runScript("println Jenkins.instance.displayName;");
assertThat(output, is("Jenkins"));
Expand Down
1 change: 0 additions & 1 deletion src/test/java/core/SlaveTest.java
Expand Up @@ -75,7 +75,6 @@ public void slave_disconnect_reconnect() throws ExecutionException, InterruptedE
}

@Test
@Category(SmokeTest.class)
public void tie_job_to_specified_label() throws Exception {
FreeStyleJob j = jenkins.jobs.create();
slave.configure();
Expand Down

0 comments on commit bdef2c3

Please sign in to comment.