I'm using robot framework to test my application
I use teardown in my test.
It works as expected, if my test ends or fails, teardown starts the execution. My problem starts when the teardown execution fails, then I want it to stop.
*** Test Cases ***
Test new data import
Setup test case
Run test case
[Teardown] TearDown test case
Teardown test case
Insert name in filter
Delete user
The scenarios is when "Insert name in filter" fails, I want it to stop running, but it executes the "Delete user" keyword.
Is it possible to prevent?