integration: exclude integration folder from make test

This commit is contained in:
Caleb Doxsey 2020-04-28 07:37:39 -06:00
parent 8fd716e1d8
commit 33b30a87b1
2 changed files with 1 additions and 2 deletions

View file

@ -87,7 +87,6 @@ jobs:
run: docker build .
integration-tests:
name: Integration Test
runs-on: ubuntu-latest
steps:
- name: cache binaries

View file

@ -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