You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi
using ci/cd
my playwright tests run and some failed
the allure report is being generated ( the plugin version is 2.32 in jenkins)
i saw that the currentBuild.result is UNSTABLE, therefor my ci/cd failed with unstable
i try to script.catchError(buildResult: "SUCCESS", stageResult: "UNSTABLE") when create the allure report
the thing is that noting is being caught, and stage code run ok, but just the currentbuild result is unstable
i want that the stage of generating allure report will be success always, unless i have exception that will be catch by the catchError
how this can be done?
i cannot overwrite the build result when it failed
is there an allure plugin version (lower version) that i can use, that will keep the stage and build results as success, altough i have failed tests in the report ( which is ok by me)
The text was updated successfully, but these errors were encountered:
line 58
public Result getResult() {
if (getFailedCount() > 0 || getBrokenCount() > 0) {
return Result.UNSTABLE;
what if i dont want to have unstable if i have tests that failed, i want to get SUCCESS
is there an option to do it when coding , to pass a parameter or somthing ?
if not , is there a version of allure plugin or allure cli that will set build result status to SUCCESS anyhow?
hi
using ci/cd
my playwright tests run and some failed
the allure report is being generated ( the plugin version is 2.32 in jenkins)
i saw that the currentBuild.result is UNSTABLE, therefor my ci/cd failed with unstable
i try to script.catchError(buildResult: "SUCCESS", stageResult: "UNSTABLE") when create the allure report
the thing is that noting is being caught, and stage code run ok, but just the currentbuild result is unstable
i want that the stage of generating allure report will be success always, unless i have exception that will be catch by the catchError
how this can be done?
i cannot overwrite the build result when it failed
is there an allure plugin version (lower version) that i can use, that will keep the stage and build results as success, altough i have failed tests in the report ( which is ok by me)
The text was updated successfully, but these errors were encountered: