I run in a Jenkins pipeline, a series of stages. Each stage represents a test. Even if a stage (test) fails, I'd like to continue with the following stages (tests), but I don't know how.
The only solution I know is to enclose the stage steps with a try/catch clause, but in this way I don't know easily if a test has failed or succeeded.
They cannot run in parallel, they must be run sequentially.
Is there a better solution?
Related question: Jenkins continue pipeline on failed stage