run only fail test but after all build work This is my fail test case
ExempleIT extends BaseIT {
@Test
public void testfailure(){
Assertions.assertTrue(false);
}
and this is my base test class
@ExtendWith({SpringExtension.class})
@SpringBootTest()
public abstract class BaseIT { ...
I tried
maven -Dfailsafe.skipAfterFailureCount=1 -Dfailsafe.rerunFailingTestsCount=2
and surefire but these does not support junit5
I rerunner-jupiter but this supports only method base but I want to use base class for all tests and after all build, Which other way can I follow?