Skip to content

Commit 33a9537

Browse files
committed
printing location of h5 file to see where it is
1 parent 180d283 commit 33a9537

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ jobs:
7070

7171
- name: Tests
7272
working-directory: ${{ env.FANS_BUILD_DIR }}
73-
run: su -c "ctest" ${{ env.FANS_MPI_USER }}
73+
run: |
74+
su -c "ctest" ${{ env.FANS_MPI_USER }}
75+
find . -name "*.h5" -exec chmod 644 {} \;
76+
echo "Available H5 files for pytest:"
77+
find . -name "*.h5" -type f | sort
7478
7579
- uses: actions/upload-artifact@v4
7680
if: failure()

0 commit comments

Comments
 (0)