diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-17 18:48:33 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-17 18:50:33 +0530 |
commit | e4550b63118765c0affd653234749a92fc51961f (patch) | |
tree | bbf3990cfcaa78dd97eb8d66d539b4e9caa0f308 /nixos | |
parent | 37d813bf6be0570c6feab070002451bd6042b0d7 (diff) |
evanix: --max-build -> --max-builds
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/tests/dsl.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/dsl.nix b/nixos/tests/dsl.nix index d2a4420..18d7ed4 100644 --- a/nixos/tests/dsl.nix +++ b/nixos/tests/dsl.nix @@ -237,7 +237,7 @@ in evanix_args = ["evanix", "${targets}", "--dry-run", "--close-unused-fd", "false"] if (allow_builds := config["constraints"]["builds"]) is not None: - evanix_args.extend(["--solver=highs", "--max-build", str(allow_builds)]) + evanix_args.extend(["--solver=highs", "--max-builds", str(allow_builds)]) expect_chosen_nodes = set(name for name, node in nodes.items() if node["test"]["chosen"]) expect_n_chosen_builds = config["test"]["constrained"]["builds"] |