vote up 2 vote down star
1

I'm trying to use the msbuild nunit community task to force tests to run on each build, but I now see that when I use ReSharper's test runner and it builds the project I'm running the tests twice. It works but is not really desirable.

Does anyone know of a variable or condition I can check within msbuild so that I can skip the community task if I know the test runner is going to execute the tests anyway?

Note: I'm using VS2008 and the msbuild script is integrated with the solution/project files. I want the best of all worlds. CTRL+SHIFT+B and a commandline and a CI server.

flag

2 Answers

vote up 0 vote down

When building in Visual Studio MSBuild defines an extra property that you can use to disable the nUnit Task.

<NUnit Condition="'$(BuildingInsideVisualStudio)' != 'true'"
    ...other props 
    />
link|flag
vote up 2 vote down check

I asked this question on the Resharper community forums and although I didn't get a direct yes or no to my question, I interpreted the answer to be no. If anyone wants to chime in with a confirmed yes or no, it would set my mind at ease.

I decided I could work around my problem by creating a solution configuration called DebugResharperTest and I choose that config when I want to use the Resharper test runner. That configuration name variable will keep the build from kicking off the NUnit msbuild task.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.