Skip to content

Commit

Permalink
Remove GoTestFmt from natives
Browse files Browse the repository at this point in the history
  • Loading branch information
t0yv0 committed Sep 5, 2024
1 parent a1b2b51 commit b23b032
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
13 changes: 1 addition & 12 deletions native-provider-ci/src/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 .",
};
}

Expand Down Expand Up @@ -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/*",
Expand Down
1 change: 0 additions & 1 deletion native-provider-ci/src/workflows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit b23b032

Please sign in to comment.