We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6716283 commit 5a0b398Copy full SHA for 5a0b398
noxfile.py
@@ -322,7 +322,7 @@ def run_system(
322
print_duration=False,
323
extra_pytest_options=(),
324
timeout_seconds=900,
325
- num_workers=20,
+ num_workers=100,
326
):
327
"""Run the system test suite."""
328
constraints_path = str(
@@ -343,6 +343,7 @@ def run_system(
343
"py.test",
344
"--quiet",
345
f"-n={num_workers}",
346
+ "--dist worksteal",
347
# Any individual test taking longer than 15 mins will be terminated.
348
f"--timeout={timeout_seconds}",
349
# Log 20 slowest tests
@@ -413,7 +414,7 @@ def doctest(session: nox.sessions.Session):
413
414
),
415
test_folder="bigframes",
416
check_cov=True,
- num_workers=5,
417
+ num_workers=20,
418
)
419
420
0 commit comments