Skip to content

Commit 5a0b398

Browse files
chore: Increase test parallelism, enable work stealing
1 parent 6716283 commit 5a0b398

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

noxfile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def run_system(
322322
print_duration=False,
323323
extra_pytest_options=(),
324324
timeout_seconds=900,
325-
num_workers=20,
325+
num_workers=100,
326326
):
327327
"""Run the system test suite."""
328328
constraints_path = str(
@@ -343,6 +343,7 @@ def run_system(
343343
"py.test",
344344
"--quiet",
345345
f"-n={num_workers}",
346+
"--dist worksteal",
346347
# Any individual test taking longer than 15 mins will be terminated.
347348
f"--timeout={timeout_seconds}",
348349
# Log 20 slowest tests
@@ -413,7 +414,7 @@ def doctest(session: nox.sessions.Session):
413414
),
414415
test_folder="bigframes",
415416
check_cov=True,
416-
num_workers=5,
417+
num_workers=20,
417418
)
418419

419420

0 commit comments

Comments
 (0)