Fix running tests on build

This commit is contained in:
Adam Hathcock
2020-06-25 09:22:15 +01:00
parent 39b07f45f1
commit 233dc33130

View File

@@ -57,7 +57,7 @@ class Program
return Glob.Files(".", d);
}
foreach (var file in GetFiles("*.Tests/**/*.csproj"))
foreach (var file in GetFiles("**/*.Test.csproj"))
{
Run("dotnet", $"test {file} -c Release -f {framework} --no-restore --no-build");
}