mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-02 16:30:17 +02:00
integration: exclude integration folder from make test
This commit is contained in:
parent
8fd716e1d8
commit
33b30a87b1
2 changed files with 1 additions and 2 deletions
1
.github/workflows/test.yaml
vendored
1
.github/workflows/test.yaml
vendored
|
@ -87,7 +87,6 @@ jobs:
|
|||
run: docker build .
|
||||
|
||||
integration-tests:
|
||||
name: Integration Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: cache binaries
|
||||
|
|
2
Makefile
2
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue