Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward authored Dec 5, 2024
1 parent 20b551f commit a3eb9c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pip-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install libsupermesh
run: |
source pip_venv/bin/activate
pip install 'rtree>=1.2'
python -m pip install 'rtree>=1.2'
cd pip_venv/src
git clone https://github.com/firedrakeproject/libsupermesh.git
mkdir -p libsupermesh/build
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
export MPICC="$CC"
source pip_venv/bin/activate
cd pip_venv/src
pip install \
python -m pip install \
--log=firedrake-install.log \
--no-cache \
--no-binary mpi4py,h5py \
Expand All @@ -109,13 +109,13 @@ jobs:
- name: Install CI-specific test dependencies
run: |
source pip_venv/bin/activate
pip install -U pytest-timeout
python -m pip install -U pytest-timeout
- name: Run Firedrake smoke tests
run: |
source pip_venv/bin/activate
cd pip_venv/src/firedrake
pytest --timeout=1800 -v tests/firedrake/regression \
python -m pytest --timeout=1800 -v tests/firedrake/regression \
-k "poisson_strong or stokes_mini or dg_advection"
timeout-minutes: 30

Expand Down

0 comments on commit a3eb9c9

Please sign in to comment.