We've got a lot of test cases that require specific data to be in the environment but the environment is not properly populated a lot of times.
Right now we're failing those tests but I was thinking about running them and marking them as 'pending' instead if the data is not there, so then it's easy to just run those in isolation.
Is this somehow possible? How could I stop the execution of the cucumber test so that it's reported as pending (or any other status different to 'failed' or 'passed' could do if that exists).
Cheers!