Skip to content

chore: Increase test parallelism #1440

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def run_system(
print_duration=False,
extra_pytest_options=(),
timeout_seconds=900,
num_workers=20,
num_workers=100,
):
"""Run the system test suite."""
constraints_path = str(
Expand All @@ -343,6 +343,7 @@ def run_system(
"py.test",
"--quiet",
f"-n={num_workers}",
"--dist=worksteal",
# Any individual test taking longer than 15 mins will be terminated.
f"--timeout={timeout_seconds}",
# Log 20 slowest tests
Expand Down Expand Up @@ -413,7 +414,7 @@ def doctest(session: nox.sessions.Session):
),
test_folder="bigframes",
check_cov=True,
num_workers=5,
num_workers=20,
)


Expand Down