Skip to content

Commit

Permalink
Merge pull request #295 from spinkube/dani/skip-e2e
Browse files Browse the repository at this point in the history
tests: skip e2e by default
  • Loading branch information
endocrimes authored Aug 15, 2024
2 parents 3fcc9f7 + b666198 commit 9246b2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
--junitfile .results/results.xml \
--jsonfile .results/results.json \
--format testname \
-- -coverprofile=.results/cover.out ./...
-- -coverprofile=.results/cover.out $(go list ./... | grep -v e2e)
- name: Test Summary
uses: test-summary/action@v2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ vet: ## Run go vet against code.

.PHONY: test
test: manifests generate fmt vet envtest ## Run tests.
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test -race ./... -coverprofile cover.out
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test -race $(go list ./... | grep -v e2e) -coverprofile cover.out

GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
GOLANGCI_LINT_VERSION ?= v1.54.2
Expand Down

0 comments on commit 9246b2c

Please sign in to comment.