From 284144185ec1e79b30a6d1017aef7c8f59c12bee Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Fri, 1 Nov 2013 19:21:18 +0100 Subject: [PATCH] Match only test.dlls in the Release folder --- build.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index 0a906abd..4d1e9c7c 100644 --- a/build.fsx +++ b/build.fsx @@ -43,7 +43,7 @@ Target "BuildApp" (fun _ -> ) Target "UnitTests" (fun _ -> - !! "./Octokit.Tests/bin/**/Octokit.Tests*.dll" + !! "./Octokit.Tests/bin/Release/**/Octokit.Tests*.dll" |> xUnit (fun p -> {p with XmlOutput = true @@ -52,7 +52,7 @@ Target "UnitTests" (fun _ -> Target "IntegrationTests" (fun _ -> if hasBuildParam "OCTOKIT_GITHUBUSERNAME" && hasBuildParam "OCTOKIT_GITHUBPASSWORD" then - !! "./Octokit.Tests.Integration/bin/**/Octokit.Tests.Integration.dll" + !! "./Octokit.Tests.Integration/bin/Release/**/Octokit.Tests.Integration.dll" |> xUnit (fun p -> {p with XmlOutput = true