Skip to content

Commit c654cef

Browse files
committed
fix(test): adjust test timeout and skip list
1 parent 5f90681 commit c654cef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/MavenTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
public class MavenTest {
2525

2626
// Define the timeout for each test
27-
private static final Duration TEST_TIMEOUT = Duration.ofSeconds(3);
27+
private static final Duration TEST_TIMEOUT = Duration.ofSeconds(2);
2828

2929
// Regex pattern to match "p" followed by only digits
3030
private static final Pattern PROBLEM_DIR_PATTERN = Pattern.compile("p\\d+");
3131

3232
// Define a skip list for problems to exclude
3333
private static final Set<String> SKIP_PROBLEMS = new HashSet<>(Arrays.asList(
34-
"p10009" // Add problems to skip here
35-
));
34+
"p10009", // Add problems to skip here
35+
"p640"));
3636

3737
// Method to dynamically discover problem names
3838
private static List<String> discoverProblemNames() {

0 commit comments

Comments
 (0)