Hello:
We have an OnDemand instance with Bamboo, and I am trying to set it up to take over as our CI server. When setting up a test plan, I've added a default job and several tasks. When I go to add a Test task, I see tasks for NUnit, MS Test and others, but no xUnit task. By xUnit, I mean the actual xUnit project at http://xunit.codeplex.com/. Are there any plans to have an xUnit task? I see that there is a plugin here: https://bitbucket.org/vitalymaslevskiy/bamboo-dotnet-plugin-xunit that adds tasks for .NET and xUnit, but I can't install that plugin in Bamboo OnDemand.
We would like to keep using xUnit, as it is out test framework tool of choice, and integrates with AutoFixture. Any input would be most helpful.
Thanks,
Scott
I found using FAKE instead of MSBuild made using xUnit with Bamboo OnDemand quite easy (among other things. Never going back to MSBuild again). Just create your FAKE script by following their calculator example (http://fsharp.github.io/FAKE/gettingstarted.html), add an XUnit task like on their homepage (https://github.com/fsharp/FAKE) and create a bamboo task that calls "build.bat" (which is included in the calculator example). Then on your FAKE xUnit task, just add a NUnitXmlOutput=true property to have it publish NUnit-style XML test results. (http://fsharp.github.io/FAKE/apidocs/fake-xunithelper-xunitparams.html). Finally add the NUnit parser task to your bamboo build, and it'll publish your results. It's pretty easy and ends up being quite flexible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.