-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NUnit duration and TestRun status #63
Comments
Confirmed regarding the |
There's a disconnect between the sample formats provided by the NUnit team and the actual output. This document refers to the following sample files, which our tests are based on:
Good catch on the top-level test-run status. It's currently not being mapped which results in a FAIL. |
Fix released in - v0.1.18 |
https://docs.nunit.org/articles/nunit/technical-notes/usage/Test-Result-XML-Format.html
The NUnit v3 format does not have
time
property, but it hasduration
. Current version 0.1.14 does not parse the duration as per NUnit specifications.i.e.
<test-run id="0" runstate="Runnable" testcasecount="40" result="Passed" total="6" passed="6" failed="0" warnings="0" inconclusive="0" skipped="0" asserts="10" engine-version="3.15" clr-version="4.0" start-time="2024-03-21 13:00:15Z" end-time="2024-03-21 13:00:42Z" duration="26.189586">
Another thing, the test-run
Passed
status is parsed toFAIL
.The text was updated successfully, but these errors were encountered: