Skip to content

Commit

Permalink
fix: restrict tests with reverse lookups to Linux agents #405
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jan 18, 2023
1 parent edb04a4 commit a5eb417
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import org.apache.hc.client5.http.fluent.Request;
import org.apache.hc.core5.http.ClassicHttpResponse;
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 java.io.IOException;
Expand All @@ -21,6 +23,7 @@
@ExtendWith(PactConsumerTestExt.class)
@PactTestFor(providerName = "ip6_provider", pactVersion = PactSpecVersion.V3)
@MockServerConfig(hostInterface = "::1", port = "1234", implementation = MockServerImplementation.KTorServer)
@DisabledOnOs(OS.WINDOWS)
public class Ip6KTorTest {
@Pact(consumer = "ApiConsumer")
public RequestResponsePact articles(PactDslWithProvider builder) {
Expand Down

0 comments on commit a5eb417

Please sign in to comment.