f2: increase timeouts and max worker count

without maxprocesses we can utilize core-rich systems better, and test
timeouts are reportedly to be too low to run on small systems as well.

fixes #890

Change-Id: I89386b89fcd69ef4bf77ecf0a49c0b85e1f17c3d
This commit is contained in:
eldritch horrors
2026-07-12 20:31:05 +02:00
parent 1657d0eb47
commit c6d22874d6
+3 -3
View File
@@ -1,6 +1,6 @@
xdist_opts = [
# auto number of workers, max 12 jobs
'-n', 'auto', '--maxprocesses=12',
# auto number of workers, auto number of jobs
'-n', 'auto',
# Distributes tests evenly at first and then, if workers run out of tests, they steal from a different worker
# This is useful here, due to differing durations of tests, especially when tests check timeout functionality
#
@@ -40,5 +40,5 @@ test(
depends : nix,
protocol : 'tap',
suite : 'installcheck',
timeout : 300,
timeout : 1800,
)