chore(ci): reduce the number of cpu threads used in tests on big instances

This commit is contained in:
Agnes Leroy
2024-06-13 11:57:39 +02:00
committed by Agnès Leroy
parent 71112231b9
commit e825277219

View File

@@ -100,7 +100,7 @@ else
fi
if [[ "${BIG_TESTS_INSTANCE}" == TRUE ]]; then
test_threads="$((num_cpu_threads * 1 / 2))"
test_threads="$((num_cpu_threads * 1 / 4))"
doctest_threads="${num_cpu_threads}"
else
test_threads="${small_instance_n_threads}"