Skip to content

Commit

Permalink
do not run spoc-e2e tests as part of spod e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Mar 7, 2024
1 parent c25df59 commit 467df63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -461,17 +461,17 @@ test-unit: $(BUILD_DIR) ## Run the unit tests
test-e2e: ## Run the end-to-end tests
CGO_LDFLAGS= \
E2E_SKIP_FLAKY_TESTS=true \
$(GO) test -parallel 1 -timeout 60m -count=1 ./test/... -v
$(GO) test -parallel 1 -timeout 60m -count=1 ./test -v

.PHONY: test-flaky-e2e
test-flaky-e2e: ## Only run the flaky end-to-end tests
CGO_LDFLAGS= \
E2E_SKIP_FLAKY_TESTS=false \
$(GO) test -parallel 1 -timeout 20m -count=1 ./test/... -v -testify.m '^(TestSecurityProfilesOperator_Flaky)$$'
$(GO) test -parallel 1 -timeout 20m -count=1 ./test -v -testify.m '^(TestSecurityProfilesOperator_Flaky)$$'

.PHONY: test-spoc-e2e
test-spoc-e2e: build/spoc
$(GO) test -v ./test/spoc/...
$(GO) test -v ./test/spoc

# Generate CRD manifests
manifests: $(BUILD_DIR)/kubernetes-split-yaml $(BUILD_DIR)/kustomize
Expand Down

0 comments on commit 467df63

Please sign in to comment.