Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,18 @@ test-e2e: manifests generate fmt vet ## Run the e2e tests. Expected an isolated
}
go test ./test/e2e/ -v -ginkgo.v

.PHONY: test-integration
test-integration: manifests generate fmt vet ## Run the integration tests. Requires a running Kubernetes cluster.
@command -v kubectl >/dev/null 2>&1 || { \
echo "kubectl is not installed. Please install kubectl manually."; \
exit 1; \
}
@kubectl cluster-info >/dev/null 2>&1 || { \
echo "No Kubernetes cluster is accessible. Please ensure kubectl is configured with a valid cluster."; \
exit 1; \
}
go test ./test/integration/ -v -ginkgo.v

.PHONY: lint
lint: golangci-lint ## Run golangci-lint linter
$(GOLANGCI_LINT) run
Expand Down
79 changes: 0 additions & 79 deletions api/v1alpha1/challenge_types.go

This file was deleted.

102 changes: 0 additions & 102 deletions api/v1alpha1/challengedefinition_types.go

This file was deleted.

36 changes: 0 additions & 36 deletions api/v1alpha1/groupversion_info.go

This file was deleted.

73 changes: 0 additions & 73 deletions api/v1alpha1/status.go

This file was deleted.

Loading
Loading