From ce2d7a08cff39f8832c518b6cc68629d97b5e341 Mon Sep 17 00:00:00 2001 From: schnellerhase <56360279+schnellerhase@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:49:49 +0100 Subject: [PATCH] Fix FFCx CI --- .github/workflows/ffcx-tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ffcx-tests.yml b/.github/workflows/ffcx-tests.yml index 67cf9d897..58593b500 100644 --- a/.github/workflows/ffcx-tests.yml +++ b/.github/workflows/ffcx-tests.yml @@ -60,4 +60,9 @@ jobs: - name: Install FFCx run: pip install ./ffcx[ci] - name: Run FFCx tests - run: pytest -n auto --ignore=ffcx/test/test_lnodes.py --ignore=ffcx/test/test_custom_data.py ffcx/test + working-directory: ffcx/test + run: > + pytest . + -n auto + --ignore=ffcx/test/test_lnodes.py + --ignore=ffcx/test/test_custom_data.py