diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index f7e5088..31471fa 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -25,4 +25,4 @@ jobs: run: make bin - name: Test - run: go test -v -race ./pkg/... + run: make test diff --git a/Makefile b/Makefile index 055cad6..ce9d5fd 100644 --- a/Makefile +++ b/Makefile @@ -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: