Skip to content

Commit bfc8d95

Browse files
Set trimStackTrace property to false (#580)
Set `trimStackTrace` to `false` in mvn failsafe plugin. This will print the full stack trace for failed integration tests making it easier to investigate nightly build failures.
1 parent 91f6705 commit bfc8d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/package_artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ echo "${FIREBASE_API_KEY}" > integration_apikey.txt
2828
# 3. Runs the unit tests (test phase)
2929
# 4. Packages the artifacts - src, bin, javadocs (package phase)
3030
# 5. Runs the integration tests (verify phase)
31-
mvn -B clean verify
31+
mvn -DtrimStackTrace=false -B clean verify
3232

3333
# Maven target directory can consist of many files. Just copy the jar artifacts
3434
# into a new directory for upload.

0 commit comments

Comments
 (0)