Skip to content

Commit 959a2e0

Browse files
committed
Fix: Exclude integration tests from unit test phase
1 parent e288491 commit 959a2e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: go mod download
5454

5555
- name: Run unit tests
56-
run: go test -v -race -coverprofile=coverage.out ./...
56+
run: go test -v -race -coverprofile=coverage.out $(go list ./... | grep -v /tests/integration)
5757

5858
- name: Upload coverage reports
5959
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)