Plugin to Rerun failed tests on Jenkins - jenkins

Is there a plugin for Jenkins CI to rerun only the failed tests, I can do it with a rerun profile and a cucumber rake task, but is there a plugin already ?
Also aware of Naginator plugin which runs the entire build on failure
https://wiki.jenkins-ci.org/display/JENKINS/Naginator+Plugin
but I want to run only the failed tests from the previous build

Have a look at the Flaky Test Handler Plugin

Related

How to re-run cypress test case failures through Jenkins pipeline?

I am running my cypress through Jenkins and Bamboo. Recently, I got so many failure based on issues out RDMS. I had to re run all the failures based on the tests spec name through Jenkins.
Is there any way to re-run my failed specs / tests through Jenkins for my Cypress automation framework ?
Please watch Gleb Bahmutov Cypress v12.5.0 Debug Tab, at 1:18 "Run failures" button.
This Debug Tab is new to Cypress 12.5.0.
The changelog states
12.5.0
Released 01/31/2023
Features:
Easily debug failed CI test runs recorded to the Cypress Cloud from your local Cypress app with the new Debug page.
The documentation is here Debug

How to make Jenkins job not to fail upon post-build actions failures?

There is great build-name-setter-plugin for Jenkins, but in my instance it has staility issue over dependency version marking some builds as failed
IllegalStateException (Build step 'Changes build name' marked build as failure), while actual build is SUCCESS #62
https://github.com/jenkinsci/build-name-setter-plugin/issues/62
I cannot upgrade Jenkins or plugins right now.
How to make Jenkins job not to fail upon post-build actions failures?
It would be better build name not changed occasionally, than making build as failures while code is OK.

Can Jenkins notify me immediately when a unit or integration test fails?

I want to try a Jenkins plugin that notifies me immediately when a junit or selenium test fails during a maven build. Not sure if this is possible or how to go about. Are there any existing plugins that I could modify?

How to trigger a build in Jenkins After the success of other build but running in Bamboo

I am building two functional selenium test scripts from Jenkins that I want to trigger the test to run automatically once the build release of the project is done.
The project is running on Bamboo, I am looking for any way that Bamboo can notify Jenkins about the result "in my case must be success" and then my get test scripts to run automatically
Any help will be appreciated
Add task in your Bamboo build to run wget or curl command which will trigger Jenkins build: https://www.nczonline.net/blog/2015/10/triggering-jenkins-builds-by-url/

Jenkins plugin/feature to rerun failed tests for svn builds

I was searching for a jenkins plugin to re-run only the failed tests for a specified number of times. Came across Flaky test handler plugin. But this plugin is only for maven projects.
Is there a similar plugin for ant projects?

Resources