From 8267adddeafc57a605900197c1d6d003b58f2218 Mon Sep 17 00:00:00 2001 From: Alex Vulaj Date: Tue, 7 Apr 2026 14:17:48 -0400 Subject: [PATCH] Remove stale podman check from e2e tests --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index a11bcc3..9df1d5f 100644 --- a/Makefile +++ b/Makefile @@ -108,10 +108,6 @@ test-e2e: build ## Run end-to-end tests (requires kubectl context and cluster ac echo "❌ No kubectl context found. Please configure kubectl first."; \ exit 1; \ fi - @if ! command -v podman >/dev/null 2>&1; then \ - echo "❌ podman not found. Please install podman for E2E tests."; \ - exit 1; \ - fi $(GOTEST) -v -tags=e2e -timeout=120m -parallel=1 ./tests/e2e/... .PHONY: test-integration