We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f90681 commit c654cefCopy full SHA for c654cef
1 file changed
src/test/java/MavenTest.java
@@ -24,15 +24,15 @@
24
public class MavenTest {
25
26
// Define the timeout for each test
27
- private static final Duration TEST_TIMEOUT = Duration.ofSeconds(3);
+ private static final Duration TEST_TIMEOUT = Duration.ofSeconds(2);
28
29
// Regex pattern to match "p" followed by only digits
30
private static final Pattern PROBLEM_DIR_PATTERN = Pattern.compile("p\\d+");
31
32
// Define a skip list for problems to exclude
33
private static final Set<String> SKIP_PROBLEMS = new HashSet<>(Arrays.asList(
34
- "p10009" // Add problems to skip here
35
- ));
+ "p10009", // Add problems to skip here
+ "p640"));
36
37
// Method to dynamically discover problem names
38
private static List<String> discoverProblemNames() {
0 commit comments