WIP: Phase 2 #2

Draft
dubey wants to merge 27 commits from phase2 into main
21 changed files with 1717 additions and 38 deletions
Showing only changes of commit dad5586339 - Show all commits

View File

@ -18,12 +18,12 @@ clean:
# Run all tests # Run all tests
test: generate test: generate
@echo "Running all tests..." @echo "Running all tests..."
@go test -count=1 ./... @go test -v -count=1 ./... --coverprofile=coverage.out
# Run unit tests only (faster, no integration tests) # Run unit tests only (faster, no integration tests)
test-unit: test-unit:
@echo "Running unit tests..." @echo "Running unit tests..."
@go test -v -count=1 -short ./... @go test -v -count=1 ./...
# Run integration tests only # Run integration tests only
test-integration: test-integration: