简体   繁体   中英

Cypress.io code coverage publish to azure devops

I am able to generate code coverage via cypress.io using a combination of Istanbul and cypress/code-coverage. This generates a coverage folder and I can view the report in an HTML format present in index.html. I am unable to use this file to publish code coverage when running it as CI in azure devops. Has anyone found a way or has the experience to publish this as a JaCoCo or Cobertura code coverage report so it appears in the code coverage tab?

You can specify custom reporters inside your package.json . This should do it in your case to get a Cobertura report:

package.json

"dependencies": {
  ...
},
"nyc": {
  "reporter": [
    "cobertura"
  ]
}

A full list of alternative reporters can be found here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM