Skip to content

Commit

Permalink
Merge pull request #668 from cescoffier/skip-flaky-tests
Browse files Browse the repository at this point in the history
Disable flak test (see #667)
  • Loading branch information
cescoffier authored Oct 2, 2023
2 parents f7210f2 + 095c985 commit f8eed06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.jboss.weld.junit5.WeldJunit5Extension;
import org.jboss.weld.junit5.WeldSetup;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
Expand Down Expand Up @@ -56,6 +57,7 @@
@DisabledOnOs(OS.WINDOWS)
@ExtendWith(WeldJunit5Extension.class)
@EnableKubernetesMockClient(crud = true)
@Disabled("flaky test - see https://github.com/smallrye/smallrye-stork/issues/667")
public class KubernetesServiceDiscoveryCDITest {

@WeldSetup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import org.hamcrest.Matchers;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
Expand Down Expand Up @@ -49,6 +50,7 @@

@DisabledOnOs(OS.WINDOWS)
@EnableKubernetesMockClient(crud = true)
@Disabled("flaky test - see https://github.com/smallrye/smallrye-stork/issues/667")
public class KubernetesServiceDiscoveryTest {

KubernetesClient client;
Expand Down

0 comments on commit f8eed06

Please sign in to comment.