File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
public class MavenTest {
25
25
26
26
// 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 );
28
28
29
29
// Regex pattern to match "p" followed by only digits
30
30
private static final Pattern PROBLEM_DIR_PATTERN = Pattern .compile ("p\\ d+" );
31
31
32
32
// Define a skip list for problems to exclude
33
33
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" ));
36
36
37
37
// Method to dynamically discover problem names
38
38
private static List <String > discoverProblemNames () {
You can’t perform that action at this time.
0 commit comments