From 3b00e2343af3e4de6c806a30e95eab93d5b9fb17 Mon Sep 17 00:00:00 2001 From: Lars Bilke Date: Tue, 21 May 2024 13:08:54 +0200 Subject: [PATCH] [T] Skip some petsc notebooks in wheels test. --- scripts/ci/jobs/jupyter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/jobs/jupyter.yml b/scripts/ci/jobs/jupyter.yml index 0e2407e670a..30d10948abb 100644 --- a/scripts/ci/jobs/jupyter.yml +++ b/scripts/ci/jobs/jupyter.yml @@ -30,7 +30,7 @@ test notebooks via wheel: # status file and sh -c to workaround xvfb-run problems: # /usr/bin/xvfb-run: line 186: kill: () - No such process" find . -type f -iname '*.ipynb' \ - | grep -vP '\.ipynb_checkpoints|\.ci-skip\.ipynb$|_out|\.venv|PhaseField|mtest' \ + | grep -vP '\.ipynb_checkpoints|\.ci-skip\.ipynb$|_out|\.venv|PhaseField|mtest|sen_shear|PETSc' \ | xargs xvfb-run -a \ sh -c 'statf="$1"; shift; "$@" || echo "$?" >"$statf"' \ -- "$status_file" \