jstemmer / go-junit-report

Convert Go test output to JUnit XML
MIT License
776 stars 224 forks source link

Parse package name output when test binary name is included #96

Closed themichaellai closed 5 years ago

themichaellai commented 5 years ago

Sometimes, the text after "# " shows the name of the test binary (".test") in addition to the package e.g.: # package/name [package/name.test]. This change ensures that the packages' build outputs are associated correctly in this case.

jstemmer commented 5 years ago

Thanks!