pub const KTSTR_NO_SKIP_MODE_ENV: &str = "KTSTR_NO_SKIP_MODE";Expand description
Name of the environment variable cargo-ktstr’s test
dispatcher sets to disable the skip-on-contention test
behavior. Presence check via var_os(...).is_some() — set
to “1” by cargo ktstr test --no-skip-mode, absent
otherwise.
Deviates from the contract-default empty-as-unset rule:
var_os does not distinguish empty from non-empty, so
KTSTR_NO_SKIP_MODE= (empty) ENABLES the bypass. Same
shape as KTSTR_GUEST_INIT_ENV.