Support interpolation matrix into quadrature space #538
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test package | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test-code: | |
| name: Test on ${{ matrix.label }} | |
| runs-on: ubuntu-24.04 | |
| container: ghcr.io/fenics/dolfinx/dolfinx:${{ matrix.label }} | |
| env: | |
| DEB_PYTHON_INSTALL_LAYOUT: deb_system | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| label: [ | |
| "stable", | |
| "nightly" | |
| ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Update pip | |
| run: python3 -m pip install --upgrade pip | |
| - name: Install package | |
| run: | | |
| python3 -m pip install -r build-requirements.txt | |
| HDF5_MPI=ON HDF5_PKGCONFIG_NAME="hdf5" python3 -m pip install h5py --no-build-isolation --no-binary=h5py | |
| python3 -m pip install .[test] --no-build-isolation --check-build-dependencies | |
| - name: Run tests | |
| run: python3 -m pytest -v | |
| - name: Run tests in parallel | |
| run: mpiexec -n 4 python3 -m pytest -v -m "not serial" |