Minor fixes
This commit is contained in:
6
Makefile
6
Makefile
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user