Run a job even if required jobs fail

Given the following conf:
nightly:
jobs:
- build-run-ui-test-coverage
- merge-test-results:
requires:
- build-run-ui-test-coverage

It is possible to run job “build-run-ui-test-coverage” even if “build-run-ui-test-coverage” job fails?

thanks

:wave: Hi @skychiarottoa,

The requires only works in case of a success.

But there is a workaround; you can see it here.

Let me know if this helps.

The inconvenient I can see with your suggested workaround is that I cannot use
persist_to_workspace/attach_workspace to pass data from one job to the other one.

Maybe I can use store_artifact and curl to get data from stored artifacts?