Skip to content
2 changes: 1 addition & 1 deletion ci/run_cuopt_pytests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rc=0
if [ "${IS_NIGHTLY}" = "nightly" ]; then
pytest -s --cache-clear --reruns 2 --reruns-delay 5 -p cuopt_rerun_xml "$@" tests || rc=$?
else
pytest -s --cache-clear -n 2 "$@" tests || rc=$?
pytest -s --cache-clear -n 4 "$@" tests || rc=$?
fi

# If not a crash, exit normally
Expand Down
2 changes: 1 addition & 1 deletion ci/run_cuopt_server_pytests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ rc=0
if [ "${IS_NIGHTLY}" = "nightly" ]; then
pytest -s --cache-clear --reruns 2 --reruns-delay 5 -p cuopt_rerun_xml "$@" tests || rc=$?
else
pytest -s --cache-clear -n 2 "$@" tests || rc=$?
pytest -s --cache-clear -n 4 "$@" tests || rc=$?
fi

if [ "${rc}" -le 128 ]; then
Expand Down
Loading