I am trying to run unit test cases from fake , while i run the script , it throws an error , i.e. access to the path c:/users/local/application data is denied.
Code :
Target "Test" (fun _ ->
!! (testDir + "/NUnit.Test.*.dll")
|> NUnit (fun p ->
{p with
DisableShadowCopy = true;
OutputFile = testDir + "TestResults.xml" }))
Please Explain above code .
testDir? Could it be that one of your tests tries to write to AppData? - CaringDev