Problem Definition
Bamboo announced support for NUnit 3.0 in version 5.14. The command line arguments that can be passed to NUnit3-Console for newer versions have changed.
Suggested Solution
Update our NUnit Runner Task to support the newer NUnit3-Console 3.x arguments.
NUnit Console Breaking Changes
Why this is important
Bamboo integration with NUnit needs to be updated
Workaround
Option 1
Use NUnit 3.0
Option 2
Use a Script task with the following command:
nunit3-console --result=TestResults.xml;format=nunit2 --test=<test>
We add ;format=nunit2 to the result since Bamboo's NUnit Parser expects results in the NUnit 2.x format.
- is related to
-
BAM-19904 Add logic to NUnit runner to use --test instead of -run
- Closed