Skip to content

Commit

Permalink
chore(ci): rename acctest workflow since it only applies to Metal
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreatma committed Jul 11, 2024
1 parent f931221 commit 3fc844a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Acceptance Tests
name: Metal Acceptance Tests
# This workflow determines whether a PR comes from an external fork
# (which requires approval from us) or from a branch on this repository
# (which means it was made by us and can run immediately). Once a PR
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
METAL_AUTH_TOKEN: ${{ secrets.METAL_AUTH_TOKEN }}
TF_ACC_METAL_DEDICATED_CONNECTION_ID: ${{ secrets.TF_ACC_METAL_DEDICATED_CONNECTION_ID }}
run: |
go test ./... -v -coverprofile coverage.txt -covermode=atomic -count 1 -parallel 8 -run "(Metal)|(Provider)|(Migration)" -timeout 180m
go test ./... -v -coverprofile coverage.txt -covermode=atomic -count 1 -parallel 8 -run "(Metal)" -timeout 180m
- name: Sweeper
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: go build -v .

- name: TF tests
run: go test -v --coverprofile coverage.txt -covermode=atomic -parallel 4 $(go list ./... |grep -v 'tests')
run: go test -v --coverprofile coverage.txt -covermode=atomic -parallel 4 ./...

- name: Upload coverage to Codecov
if: ${{ always() }}
Expand Down

0 comments on commit 3fc844a

Please sign in to comment.