diff --git a/codecov.yml b/codecov.yml index 257756f8..035d297a 100644 --- a/codecov.yml +++ b/codecov.yml @@ -87,9 +87,6 @@ ignore: # ========================================================================= # ENTRY POINTS - Bootstrap code with minimal testable logic # ========================================================================= - - "backend/cmd/api/**" # Main entry point, CLI handling - - "backend/cmd/seed/**" # Database seeding utility - - "frontend/src/main.tsx" # React bootstrap # ========================================================================= # INFRASTRUCTURE PACKAGES - Observability, align with local script diff --git a/scripts/go-test-coverage.sh b/scripts/go-test-coverage.sh index f9f72bbb..60d5dc9a 100755 --- a/scripts/go-test-coverage.sh +++ b/scripts/go-test-coverage.sh @@ -25,8 +25,6 @@ cd "$BACKEND_DIR" # Packages to exclude from coverage (main packages and infrastructure code) # These are entrypoints and initialization code that don't benefit from unit tests EXCLUDE_PACKAGES=( - "github.com/Wikid82/charon/backend/cmd/api" - "github.com/Wikid82/charon/backend/cmd/seed" "github.com/Wikid82/charon/backend/internal/trace" "github.com/Wikid82/charon/backend/integration" )