Skip to content

Commit

Permalink
Increase timeout for ParallelBuildChainTest #825
Browse files Browse the repository at this point in the history
The ParallelBuildChainTest.testIndividualProjectBuilds_WithManyProjects_ProjectRelaxedRule
randomly fails. This is potentially due to slow infrastructure, thus
this change increases the test timeout value.

Fixes #825
  • Loading branch information
HeikoKlare committed Nov 6, 2023
1 parent 87eb828 commit 9bf98d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import org.junit.Test;

public class ParallelBuildChainTest extends AbstractBuilderTest {
private static final int TIMEOUT_IN_MILLIS = 20_000;
private static final int TIMEOUT_IN_MILLIS = 30_000;

private static enum BuildDurationType {
/*
Expand All @@ -68,7 +68,7 @@ private static enum BuildDurationType {
public int getDurationInMillis() {
switch (this) {
case LONG_RUNNING:
return 30_000;
return 40_000;
case SHORT_RUNNING:
return 300;
case IMMEDIATE:
Expand Down

0 comments on commit 9bf98d6

Please sign in to comment.