Skip to content

Commit

Permalink
Skip controller sanity tests (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladem authored Oct 18, 2023
1 parent 2f6da55 commit 853b372
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
run: make bin

- name: Test
run: go test -v -race ./pkg/...
run: make test
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ bin:
.PHONY: test
test:
go test -v -race ./pkg/...
go test -v ./tests/sanity/...
# skipping controller test cases because we don't implement controller for static provisioning, this is a known limitation of sanity testing package: https://github.com/kubernetes-csi/csi-test/issues/214
go test -v ./tests/sanity/... -ginkgo.skip="ControllerGetCapabilities" -ginkgo.skip="ValidateVolumeCapabilities"

.PHONY: fmt
fmt:
Expand Down

0 comments on commit 853b372

Please sign in to comment.