I’d like to be able to press p while in the check job, execute the produce-warning job and then automatically go back the the previous job. Is this possible?
If not, should this be possible?
My use case is that I want to run cargo llvm-cov --branch --open and return to the previous job (similar to cargo doc --open). However, cargo-llvm-cov unconditionally warns that --branch is unstable and there is no way to deactivate that warning.
Based on the documentation for
allow_warnings
, I would expect that whenallow_warnings = true
,on_success
is triggered even when there are warnings:Minimal example (in an empty
cargo
project, currentbacon
main
018a2c85a2c223df85df3462caba5eca8da2d969):I’d like to be able to press
p
while in thecheck
job, execute theproduce-warning
job and then automatically go back the the previous job. Is this possible?If not, should this be possible?
My use case is that I want to run
cargo llvm-cov --branch --open
and return to the previous job (similar tocargo doc --open
). However,cargo-llvm-cov
unconditionally warns that--branch
is unstable and there is no way to deactivate that warning.