Skip to content

Commit 920ab4d

Browse files
committed
DAS-None: fix report locations.
1 parent b6b05f7 commit 920ab4d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/run-test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ set -ex
1818
find . | 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
2828
docker 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 "$@"

0 commit comments

Comments
 (0)