mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-16 07:36:38 +00:00
Fix passing of CARGO_NEXTEST_ADDITIONAL_ARGS
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
661a5f18d4
commit
8a1f329389
1 changed files with 2 additions and 1 deletions
3
justfile
3
justfile
|
@ -12,6 +12,7 @@ use-auditable := env_var_or_default("JUST_USE_AUDITABLE", "")
|
|||
timings := env_var_or_default("JUST_TIMINGS", "")
|
||||
build-std := env_var_or_default("JUST_BUILD_STD", "")
|
||||
enable-h3 := env_var_or_default("JUST_ENABLE_H3", "")
|
||||
cargo-nextest-additional-args := env_var_or_default("CARGO_NEXTEST_ADDITIONAL_ARGS", "")
|
||||
|
||||
export BINSTALL_LOG_LEVEL := if env_var_or_default("RUNNER_DEBUG", "0") == "1" { "debug" } else { "info" }
|
||||
export BINSTALL_RATE_LIMIT := "30/1"
|
||||
|
@ -260,7 +261,7 @@ e2e-test-tls: (e2e-test "tls" "1.2") (e2e-test "tls" "1.3")
|
|||
e2e-tests: e2e-test-live e2e-test-manifest-path e2e-test-git e2e-test-other-repos e2e-test-strategies e2e-test-version-syntax e2e-test-upgrade e2e-test-tls e2e-test-self-upgrade-no-symlink e2e-test-uninstall e2e-test-subcrate e2e-test-no-track e2e-test-registries e2e-test-signing e2e-test-continue-on-failure e2e-test-private-github-repo
|
||||
|
||||
unit-tests: print-env
|
||||
cargo nextest run {{cargo-build-args}} "$CARGO_NEXTEST_ADDITIONAL_ARGS"
|
||||
cargo nextest run {{cargo-build-args}} {{cargo-nextest-additional-args}}
|
||||
cargo test --doc {{cargo-build-args}}
|
||||
|
||||
test: unit-tests build e2e-tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue