-
Notifications
You must be signed in to change notification settings - Fork 152
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 3 console runs test for nunit.framework.dll v2 in parallel mode #33
Comments
I believe that NUnit 3 will run multiple NUnit 2 test assemblies in parallel, but the tests within the v2 tests will not be run in parallel. Is the trouble with multiple assemblies? |
Yes, the the trouble with multiple assemblies. |
Why is this a problem for the TC extension? v3 tests run the same way. I assume you handle that? |
Extension receives 2 message one after another: 1:
2:
After that 3: Question: What assembly corresponds |
Some kind of XML but from several different files at the same time :) |
The issue is that the v2 driver is using the same prefix for both assemblies. Both drivers should get their prefixes from a common source. |
Fixed in #564 I believe. |
Is it expected behavior? If it is true the TC extensions works incorrectly for this case.
As I know nunit.framework.dll v2 have no attributes for parallel mode. And this issue is critical for the TC extension. Related issue is nunit/teamcity-event-listener#14
The text was updated successfully, but these errors were encountered: