docker: limit types of unit tests on stable toolchain.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-05-31 06:15:58 +00:00
parent d3233ce8b6
commit c1c4ce9679

View File

@@ -740,7 +740,9 @@ target "tests-unit" {
}
args = {
cargo_cmd = (cargo_profile == "bench"? "bench": "test")
cargo_args = "--no-fail-fast"
cargo_args = (rust_toolchain == "nightly"?
"--no-fail-fast --all-targets": "--no-fail-fast --bins --tests"
)
}
}