forked from claude-did-this/claude-hub
The coverage job was failing because it was running E2E tests that require Docker containers, but the coverage job only depends on unit tests, not the docker job. Changed the coverage generation to only run unit tests by using testPathPattern to exclude E2E tests. This is appropriate since: - E2E tests are primarily for workflow testing - Unit tests provide sufficient code coverage metrics - Docker containers are not available in the coverage job environment Resolves CI pipeline failure after codecov badge merge. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>