Skip to content

Commit

Permalink
ci: increase test concurrency from 8 to 16
Browse files Browse the repository at this point in the history
Now that there are no bottlenecks we can increase the concurrency of the
tests.

TBD Test run from X to Y (%)

before
after

Signed-off-by: Pablo Barbáchano <[email protected]>
  • Loading branch information
pb8o committed Dec 19, 2024
1 parent 5c449be commit af8dd01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline_cross.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
f"buildkite-agent artifact download snapshots/{src_instance}_{src_kv}.tar .",
f"tar xSvf snapshots/{src_instance}_{src_kv}.tar",
*pipeline.devtool_test(
pytest_opts=f"-m nonci -n4 {k_val} integration_tests/functional/test_snapshot_restore_cross_kernel.py",
pytest_opts=f"-m nonci -n8 --dist worksteal {k_val} integration_tests/functional/test_snapshot_restore_cross_kernel.py",
),
],
"label": f"🎬 {src_instance} {src_kv} ➡️ {dst_instance} {dst_kv}",
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/pipeline_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
pipeline.build_group(
"⚙ Functional and security 🔒",
pipeline.devtool_test(
pytest_opts="-n 8 --dist worksteal integration_tests/{{functional,security}}",
pytest_opts="-n 16 --dist worksteal integration_tests/{{functional,security}}",
),
)

Expand Down

0 comments on commit af8dd01

Please sign in to comment.