Skip to content

Commit

Permalink
chore: exclude stdout output by filename instead of Python bin
Browse files Browse the repository at this point in the history
  • Loading branch information
JDSanto committed Feb 14, 2024
1 parent f2b02fa commit 09a3c29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/rpl/RPL/service/TestService.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private List<String> parseTestRunStdout(String testRunStdout) {
} else if (line.contains("start_RUN")) {
result = new StringBuilder();
} else if (line.contains("assignment_main.py") || line.contains("./main") || line
.contains("/usr/bin/python3.7")) {
.contains("custom_IO_main.pyc")) {
continue;
} else {
result.append(line).append("\n");
Expand Down

0 comments on commit 09a3c29

Please sign in to comment.