From 538787fd83fa456c4245e078632e2685dcd0dd04 Mon Sep 17 00:00:00 2001 From: Kyle Dixler Date: Wed, 8 Nov 2023 12:21:26 -0800 Subject: [PATCH] added `make test` make target for action in pulumi/pulumi (#2659) Part of https://github.com/pulumi/pulumi/issues/14323 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ab7a8e0d64..72d838b52d 100644 --- a/Makefile +++ b/Makefile @@ -118,6 +118,9 @@ install:: install_nodejs_sdk install_dotnet_sdk install_provider GO_TEST_FAST := go test -short -v -count=1 -cover -timeout 2h -parallel ${TESTPARALLELISM} GO_TEST := go test -v -count=1 -cover -timeout 2h -parallel ${TESTPARALLELISM} +# Required for the codegen action that runs in pulumi/pulumi +test:: test_all + test_fast:: # TODO: re-enable this test once https://github.com/pulumi/pulumi/issues/4954 is fixed. # ./sdk/nodejs/node_modules/mocha/bin/mocha ./sdk/nodejs/bin/tests