I am really happy about this package having an option to include filenames in test suites - it makes integration with various test-parsing tools much easier! However I encountered an issue when trying to make use of a JUnit report parser for Github Actions.
You see, that parser generates nice annotations on the PR pointing to the test which has failed. However, it cannot point to the proper test. It can point only to the file, since it doesn't know about the line at which the failure occurred.
So, think it would be great if we had an option to append a :line to the file property on the testcases.
Thanks for the awesome project!
I am really happy about this package having an option to include filenames in test suites - it makes integration with various test-parsing tools much easier! However I encountered an issue when trying to make use of a JUnit report parser for Github Actions.
You see, that parser generates nice annotations on the PR pointing to the test which has failed. However, it cannot point to the proper test. It can point only to the file, since it doesn't know about the line at which the failure occurred.
So, think it would be great if we had an option to append a
:line
to thefile
property on the testcases.Thanks!