diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5be68a9e9..0a6fac867 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -87,7 +87,6 @@ jobs: run: docker build . integration-tests: - name: Integration Test runs-on: ubuntu-latest steps: - name: cache binaries diff --git a/Makefile b/Makefile index c48c1e81e..637b50cb0 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ lint: ## Verifies `golint` passes. .PHONY: test test: ## Runs the go tests. @echo "==> $@" - @go test -tags "$(BUILDTAGS)" $(shell go list ./... | grep -v vendor) + @go test -tags "$(BUILDTAGS)" $(shell go list ./... | grep -v vendor | grep -v github.com/pomerium/pomerium/integration) @opa test ./authorize/evaluator/opa/policy .PHONY: spellcheck