From b23b032ccf9043da79a3cea2309c776e092cdf15 Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Thu, 5 Sep 2024 17:20:10 -0400 Subject: [PATCH] Remove GoTestFmt from natives --- native-provider-ci/src/steps.ts | 13 +------------ native-provider-ci/src/workflows.ts | 1 - 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/native-provider-ci/src/steps.ts b/native-provider-ci/src/steps.ts index 398123581..f794909c8 100644 --- a/native-provider-ci/src/steps.ts +++ b/native-provider-ci/src/steps.ts @@ -526,7 +526,7 @@ export function RunTests(provider: string, name: string): Step { name: "Run tests", run: "set -euo pipefail\n" + - "cd examples && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt", + "cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .", }; } @@ -633,17 +633,6 @@ export function SchemaFileChanged(provider: string): Step { }; } -export function SetupGotestfmt(): Step { - return { - name: "Install gotestfmt", - uses: "GoTestTools/gotestfmt-action@v2", - with: { - version: "v2.5.0", - token: "${{ secrets.GITHUB_TOKEN }}", - }, - }; -} - export function SdkFilesChanged(): Step { return { name: "Check for diff in sdk/*", diff --git a/native-provider-ci/src/workflows.ts b/native-provider-ci/src/workflows.ts index 73c78bfdd..d2ec96616 100644 --- a/native-provider-ci/src/workflows.ts +++ b/native-provider-ci/src/workflows.ts @@ -604,7 +604,6 @@ export class TestsJob implements NormalJob { steps.SetupGCloud(opts.gcp), steps.InstallKubectl(opts.provider), steps.InstallandConfigureHelm(opts.provider), - steps.SetupGotestfmt(), steps.CreateKindCluster(opts.provider, workflowName), steps.RunTests(opts.provider, workflowName), steps.NotifySlack("Failure in SDK tests"),