From 257ed26a334773e28258c598b4aff7594167243b Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Mon, 22 Nov 2021 23:17:38 -0500 Subject: [PATCH] See if we can make dotnet tests run on Windows --- sdk/dotnet/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/dotnet/Makefile b/sdk/dotnet/Makefile index bcee9267e..5d7d1fca3 100644 --- a/sdk/dotnet/Makefile +++ b/sdk/dotnet/Makefile @@ -45,11 +45,11 @@ install:: build install_plugin dotnet_test:: $(TEST_ALL_DEPS) # include the version prefix/suffix to avoid generating a separate nupkg file - $(TESTSUITE_SKIPPED) dotnet-test || dotnet test --no-build --filter --filter FullyQualifiedName\\!~Pulumi.Automation.Tests /p:Version=${DOTNET_VERSION} + $(TESTSUITE_SKIPPED) dotnet-test || dotnet test Pulumi.Tests/Pulumi.Tests.csproj /p:Version=${DOTNET_VERSION} auto_test:: $(TEST_ALL_DEPS) # include the version prefix/suffix to avoid generating a separate nupkg file - $(TESTSUITE_SKIPPED) auto-dotnet || dotnet test --no-build --filter --filter FullyQualifiedName~Pulumi.Automation.Tests /p:Version=${DOTNET_VERSION} + $(TESTSUITE_SKIPPED) auto-dotnet || dotnet test Pulumi.Automation.Tests/Pulumi.Automation.Tests.csproj /p:Version=${DOTNET_VERSION} test_fast:: dotnet_test $(GO_TEST_FAST) ${PROJECT_PKGS}