Provide a way to prevent running tests based on prerequisite checks / if setup steps fail #23
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Sometimes you want to prevent running tests altogether, if certain prerequisites aren't met.
On a related note, if a
setup_dir
/setup
step fails, processing should probably stop altogether too.Implementing the latter would enable the former: user could then place a prerequisites check in a top-level
setup_dir
script and report a nonzero exit code if prerequisites aren't met, causing overall processing to stop right there.