Skip to content

Commit 3e73640

Browse files
authored
fix: update Maven command for fuzz tests to reflect new package structure (#748)
Adjusted the Maven command in the fuzz-tests.yml to use the correct package path for the fuzz tests. This change ensures that the tests are executed properly under the updated project structure. - Added sure-fire option to prevent failure if no specified tests are found
1 parent 12fcc22 commit 3e73640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/fuzz-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
mkdir -p "${{ runner.temp }}/jazzer-artifacts/"
5252
# Execute only tests under fuzz package and force tests not to be skipped
53-
mvn -B -pl fesod -am -D"maven.test.skip=false" -DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test" test
53+
mvn -B -pl fesod-sheet -am -D"maven.test.skip=false" -DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test" -D"surefire.failIfNoSpecifiedTests=false" test
5454
5555
- name: Upload Jazzer artifacts (crashes, repros)
5656
if: always()

0 commit comments

Comments
 (0)