Saurabh kukade
Saurabh kukade

Reputation: 1634

how to re-run test failed suites in robotframework using maven and JAVA

After running a test pack, is there any way I can run failed test suites only in Robot Framework for Java with maven?.

I know there is an option to re-run failed test cases but not for test suits.

Upvotes: 0

Views: 682

Answers (1)

Eugene Roldukhin
Eugene Roldukhin

Reputation: 657

  • For tests

http://robotframework.org/MavenPlugin/run-mojo.html#runFailed

  • For suits

This feature doesn't exist.

But you can do it with IntelliJ IDEA. For example, you ran unit tests and one test failed. You can click on the button - "Rerun Failed Tests".

Please see the screenshot.

enter image description here

I hope, it helps you!

Upvotes: 1

Related Questions