Skip to content

Commit

Permalink
skip on windows k8s tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz committed Jul 12, 2023
1 parent 5183f5b commit 96fa82e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import org.jboss.weld.junit5.WeldSetup;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.extension.ExtendWith;

import io.fabric8.kubernetes.api.model.EndpointAddress;
Expand All @@ -50,7 +52,7 @@
import io.smallrye.stork.api.ServiceInstance;
import io.smallrye.stork.test.StorkTestUtils;
import io.smallrye.stork.test.TestConfigProviderBean;

@DisabledOnOs(OS.WINDOWS)
@ExtendWith(WeldJunit5Extension.class)
@EnableKubernetesMockClient(crud = true)
public class KubernetesServiceDiscoveryCDITest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
import io.smallrye.stork.api.ServiceInstance;
import io.smallrye.stork.test.StorkTestUtils;
import io.smallrye.stork.test.TestConfigProvider;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

@DisabledOnOs(OS.WINDOWS)
@EnableKubernetesMockClient(crud = true)
public class KubernetesServiceDiscoveryTest {

Expand Down

0 comments on commit 96fa82e

Please sign in to comment.