diff --git a/.github/workflows/project-tests.yaml b/.github/workflows/project-tests.yaml index 768d15ea..c1bf4e5a 100644 --- a/.github/workflows/project-tests.yaml +++ b/.github/workflows/project-tests.yaml @@ -49,8 +49,8 @@ jobs: - name: Build Apptainer image run: | cd projects/${{ matrix.project }} - singularity build --fakeroot ${{ matrix.project }}.sif apptainer.def + singularity build ${{ matrix.project }}.sif apptainer.def - name: Run tests in Apptainer container run: | - singularity exec --fakeroot ${{ matrix.project }}.sif poetry run pytest + singularity exec ${{ matrix.project }}.sif poetry run pytest