Skip to content

Commit

Permalink
add github CI build action 9
Browse files Browse the repository at this point in the history
  • Loading branch information
pull-vert committed Sep 25, 2024
1 parent 38343e8 commit b88db65
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/test/java/jayo/internal/AsyncTimeoutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* This test uses four timeouts of varying durations: 250ms, 500ms, 750ms and
* 1000ms, named 'a', 'b', 'c' and 'd'.
*/
@Tag("no-ci")
public final class AsyncTimeoutTest {
private final BlockingDeque<AsyncTimeout> timedOut = new LinkedBlockingDeque<>();
private final AsyncTimeout a = recordingAsyncTimeout();
Expand Down Expand Up @@ -94,7 +95,6 @@ public void singleInstanceTimedOut() {
}

@Test
@Tag("no-ci")
public void singleInstanceTimedOutFunction() {
Cancellable.withTimeout(Duration.ofMillis(25), cancelScope -> {
a.enter(cancelScope);
Expand Down Expand Up @@ -125,7 +125,6 @@ public void singleInstanceNotTimedOut() {
}

@Test
@Tag("no-ci")
public void instancesAddedAtEnd() {
Cancellable.withTimeout(Duration.ofMillis(100), cancelScope1 -> {
a.enter(cancelScope1);
Expand Down Expand Up @@ -218,7 +217,6 @@ public void deadlineOnly() {
}

@Test
@Tag("no-ci")
public void deadlineBeforeTimeout() {
final var timeout = recordingAsyncTimeout();
final var builder = Cancellable.builder();
Expand Down

0 comments on commit b88db65

Please sign in to comment.