From 281c42ba1ce01bd2892760fad745db8de2262796 Mon Sep 17 00:00:00 2001 From: Brice Lambson Date: Mon, 18 May 2015 14:04:26 -0700 Subject: [PATCH] Don't run tests using bin/debug/app/project.json files --- build/_k-standard-goals.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/_k-standard-goals.shade b/build/_k-standard-goals.shade index 43524358cd..9485443f1a 100644 --- a/build/_k-standard-goals.shade +++ b/build/_k-standard-goals.shade @@ -137,7 +137,7 @@ default Configuration='${E("Configuration")}' #xunit-test target='test' if='Directory.Exists("test")' @{ - var projectFiles = Files.Include("test/**/project.json").ToList(); + var projectFiles = Files.Include("test/**/project.json").Exclude("**/bin/*/app/project.json").ToList(); if (ShouldRunInParallel) { Parallel.ForEach(projectFiles, projectFile => DnxTest(projectFile, testParallel: true));