Skip to content

Commit

Permalink
Correct test results path for GitHub Actions reporters
Browse files Browse the repository at this point in the history
  • Loading branch information
justafish committed Aug 22, 2024
1 parent ccf4d9d commit 9bb2d5d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scaffold/github/workflows/TestFunctional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
comment_mode: off
files: |
test_result/**/*.xml
test-results/**/*.json
test-result/**/*.json
2 changes: 1 addition & 1 deletion scaffold/github/workflows/TestStatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
comment_mode: off
files: |
test_result/**/*.xml
test-results/**/*.json
test-result/**/*.json
4 changes: 4 additions & 0 deletions tasks/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,3 +342,7 @@ tasks:
echo "Unable to figure out which package manager is in use"
exit 1;
fi
if [ -d "vrt-report" ]; then
mkdir -p test_result
mv vrt-report test_result/vrt-report
fi

0 comments on commit 9bb2d5d

Please sign in to comment.