Skip to content

Commit

Permalink
Disable flaky test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Feb 26, 2024
1 parent 052c636 commit 13d53e6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/com/jcabi/http/RequestITCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.function.Executable;
import org.junit.jupiter.params.ParameterizedTest;

Expand All @@ -64,6 +66,7 @@ final class RequestITCase extends RequestTestTemplate {
@Values
@ParameterizedTest
@Timeout(10)
@DisabledOnOs(OS.WINDOWS)
void sendsHttpRequestAndProcessesHttpResponse(
final Class<? extends Request> type
) throws Exception {
Expand Down

0 comments on commit 13d53e6

Please sign in to comment.