Skip to content

Commit

Permalink
Fixed installation of gotestsum
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson committed Dec 5, 2023
1 parent fe8942d commit ad7a938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ jobs:
}
EOT
- name: Install gotestsum
run: go install gotest.tools/gotestsum@latest
run: |
sudo apt-get update
sudo apt-get install gotestsum
shell: bash
- name: Test Git integration
run: gotestsum --junitfile node-summary.xml --format short-verbose -- -run "${{ steps.test_split.outputs.run }}" -timeout 0 integration_test.go
Expand Down
2 changes: 1 addition & 1 deletion integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2311,7 +2311,7 @@ func TestCloudRegionTargetResource(t *testing.T) {
err = testFramework.TerraformInitAndApply(t, container, filepath.Join("./terraform", "33a-cloudregiontargetds"), newSpaceId, []string{})

if err != nil {
t.Log("BUG: cloud region data source does not appear to work")
t.Fatal("cloud region data source does not appear to work")
}

// Assert
Expand Down

0 comments on commit ad7a938

Please sign in to comment.