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
Using Bamboo'sJUnit Parser, if no errors are reported by flake8, then the build will be fail using this tool.
The reason is that Bamboo requires that there be at least one successful test reported to consider the JUnit Parser task as successful. flake8-junit-report creates a JUnit file in this case with 0 tests.
Could the tool be updated to output a single successful test when there are no errors?
Using Bamboo's JUnit Parser, if no errors are reported by
flake8
, then the build will be fail using this tool.The reason is that Bamboo requires that there be at least one successful test reported to consider the JUnit Parser task as successful.
flake8-junit-report
creates a JUnit file in this case with 0 tests.Could the tool be updated to output a single successful test when there are no errors?
A similar plugin I wrote does it like this:
https://github.com/johnthagen/cppcheck-junit/blob/69c16c0fb49a464961fbb54b4030d92e6b75b1b8/cppcheck_junit.py#L143
The text was updated successfully, but these errors were encountered: