File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ set -ex
1818find . | grep -E " (__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
1919
2020# Make the directory into which XML format test reports will be saved
21- mkdir -p test-reports
21+ mkdir -p reports/ test-reports
2222
2323# Make the directory into which coverage reports will be saved
24- mkdir -p coverage
24+ mkdir -p reports/ coverage
2525
2626# Run the tests in a Docker container with mounted volumes for XML report
2727# output and test coverage reporting
2828docker run --platform linux/amd64 --rm \
29- -v $( pwd) /test-reports:/home/tests/ reports \
30- -v $( pwd) /coverage:/home/tests /coverage \
29+ -v $( pwd) /reports/ test-reports:/home/reports/test- reports \
30+ -v $( pwd) /reports/ coverage:/home/reports /coverage \
3131 ghcr.io/nasa/harmony-browse-image-generator-test " $@ "
You can’t perform that action at this time.
0 commit comments