Fix installation with dolfinx
main
#24
Workflow file for this run
This file contains 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: febug unit tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Run-Tests: | |
runs-on: ubuntu-latest | |
container: dolfinx/dolfinx:nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: python3 -m pip install --break-system-packages pyvista pytest | |
- name: Install python package | |
run: python3 -m pip install --check-build-dependencies . | |
- name: Run unit tests | |
run: python3 -m pytest test/ |