See if we can make dotnet tests run on Windows

This commit is contained in:
Anton Tayanovskyy 2021-11-22 23:17:38 -05:00
parent 1830f71c82
commit 257ed26a33

View file

@ -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}