Skip to content

Commit f915f4b

Browse files
committed
Use absolute path to fix xunit result upload in Evergreen
1 parent 2d6fce1 commit f915f4b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.evergreen/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ functions:
164164
"upload test results":
165165
- command: attach.xunit_results
166166
params:
167-
file: "${PROJECT_DIRECTORY}/test-results.xml"
167+
# Uploading test results does not work when using ${PROJECT_DIRECTORY},
168+
# so we use an absolute path to work around this
169+
file: "src/test-results.xml"
168170
- command: attach.results
169171
params:
170172
file_location: "${DRIVERS_TOOLS}/results.json"

0 commit comments

Comments
 (0)