Minor fixes

This commit is contained in:
2025-05-17 12:48:37 -04:00
parent b33127bd34
commit ce6f2ce29d
9 changed files with 27 additions and 34 deletions

View File

@ -23,19 +23,19 @@ test: generate
# Run unit tests only (faster, no integration tests)
test-unit:
@echo "Running unit tests..."
@go test -count=1 -short ./...
@go test -v -count=1 -short ./...
# Run integration tests only
test-integration:
@echo "Running integration tests..."
@go test -count=1 -run Integration ./...
@go test -v -count=1 -run Integration ./...
# Run tests for a specific package
test-package:
@echo "Running tests for package $(PACKAGE)..."
@go test -v ./$(PACKAGE)
kat-agent:
kat-agent: $(shell find ./cmd/kat-agent -name '*.go') $(shell find . -name 'go.mod' -o -name 'go.sum')
@echo "Building kat-agent..."
@go build -o kat-agent ./cmd/kat-agent/main.go