Skip to content

Commit 76d9f77

Browse files
committed
fixup
1 parent a936463 commit 76d9f77

File tree

3 files changed

+2
-21
lines changed

3 files changed

+2
-21
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies = [
3838
"fenics-ufl @ git+https://github.com/firedrakeproject/ufl.git",
3939
"firedrake-fiat @ git+https://github.com/firedrakeproject/fiat.git",
4040
"islpy>=2025.1.5; sys_platform == 'darwin'",
41-
"fuse-element @ git+https://github.com/indiamai/fuse.git",
41+
"fuse-element @ git+https://github.com/firedrakeproject/fuse.git",
4242
]
4343
classifiers = [
4444
"Development Status :: 5 - Production/Stable",

requirements-git.txt

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@ git+https://github.com/dolfin-adjoint/pyadjoint.git#egg=pyadjoint-ad
44
git+https://github.com/firedrakeproject/loopy.git@main#egg=loopy
55
git+https://github.com/firedrakeproject/petsc.git@firedrake#egg=petsc
66
git+https://github.com/firedrakeproject/libsupermesh.git#egg=libsupermesh
7-
<<<<<<< HEAD
8-
git+https://github.com/indiamai/redefining_fe.git#egg=redefining_fe
9-
=======
10-
git+https://github.com/indiamai/fuse.git#egg=fuse
11-
>>>>>>> 59bca7388 (Rename redefining fe to fuse (#3960))
7+
git+https://github.com/firedrakeproject/fuse.git#egg=fuse)

scripts/firedrake-run-split-tests

-15
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,16 @@
2424
#
2525
# * pytest
2626
# * pytest-split
27-
<<<<<<< HEAD
2827
# * mpi-pytest
29-
=======
30-
# * pytest-mpi (https://github.com/firedrakeproject/pytest-mpi)
31-
>>>>>>> 834db29ca (Test suite clean up (#3385))
3228
# * GNU parallel
3329

3430
num_procs=$1
3531
num_jobs=$2
3632
extra_args=${@:3}
3733

38-
<<<<<<< HEAD
3934
# Set per-job cache directories to avoid race conditions when multiple jobs attempt to compile the same form.
4035
cache_cmd="PYOP2_CACHE_DIR=\$VIRTUAL_ENV/.cache/pyop2/job{#} \
4136
FIREDRAKE_TSFC_KERNEL_CACHE_DIR=\$VIRTUAL_ENV/.cache/tsfc/job{#}"
42-
=======
43-
log_file_prefix="pytest_nprocs${num_procs}_job"
44-
>>>>>>> 834db29ca (Test suite clean up (#3385))
4537

4638
if [ $num_procs = 1 ]; then
4739
pytest_exec="python -m pytest"
@@ -55,11 +47,8 @@ pytest_cmd="${pytest_exec} -v \
5547
--splits ${num_jobs} --group {#} \
5648
-m ${marker_spec} ${extra_args}"
5749

58-
<<<<<<< HEAD
5950
log_file_prefix="pytest_nprocs${num_procs}_job"
6051

61-
=======
62-
>>>>>>> 834db29ca (Test suite clean up (#3385))
6352
# Print the command
6453
set -x
6554

@@ -68,11 +57,7 @@ set -x
6857
# * Uses tee to pipe stdout+stderr to both stdout and a log file
6958
# * Writes pytest's exit code to a file called jobN.errcode (for later inspection)
7059
parallel --line-buffer --tag \
71-
<<<<<<< HEAD
7260
"${cache_cmd}; ${pytest_cmd} |& tee ${log_file_prefix}{#}.log; \
73-
=======
74-
"${pytest_cmd} |& tee ${log_file_prefix}{#}.log; \
75-
>>>>>>> 834db29ca (Test suite clean up (#3385))
7661
echo \${PIPESTATUS[0]} > job{#}.errcode" \
7762
::: $(seq ${num_jobs})
7863

0 commit comments

Comments
 (0)