We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 180d283 commit 33a9537Copy full SHA for 33a9537
.github/workflows/build_and_test.yaml
@@ -70,7 +70,11 @@ jobs:
70
71
- name: Tests
72
working-directory: ${{ env.FANS_BUILD_DIR }}
73
- run: su -c "ctest" ${{ env.FANS_MPI_USER }}
+ 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
78
79
- uses: actions/upload-artifact@v4
80
if: failure()
0 commit comments