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
I executing parallel tests to gitlab CI. I have configured the project to publish reports to a report portal instance. From what I understood from the documentation, setting "autoMerge" option to true should merge reports for all launches of current execution into a single launch on report portal. However, that is not what I am observing. I still see launch for each node that is executing the tests.
I also tried passing --ci-build-id value as $CI_PIPELINE_ID as well. That did not help either.
Please let me know if there is anything wrong I am doing or if my understanding of the working is incorrect.
Please refer following files for details:
cypress.config.js:
Hello @noopurmath3 !
The CI_BUILD_ID variable must be provided as an ENVIRONMENTvariable because Cypress itself does not share this option with the reporter.
Please let me know if this helps!
Hello,
I executing parallel tests to gitlab CI. I have configured the project to publish reports to a report portal instance. From what I understood from the documentation, setting "autoMerge" option to true should merge reports for all launches of current execution into a single launch on report portal. However, that is not what I am observing. I still see launch for each node that is executing the tests.
I also tried passing --ci-build-id value as $CI_PIPELINE_ID as well. That did not help either.
Please let me know if there is anything wrong I am doing or if my understanding of the working is incorrect.
Please refer following files for details:
cypress.config.js:
Execution command:
npx cypress run --browser chrome --record --parallel --ci-build-id $CI_PIPELINE_ID
The text was updated successfully, but these errors were encountered: