Skip to content
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
240d23d
Add pytest test suite with coverage and CI workflow
TheRealAgentK Apr 9, 2026
1f20800
Fix ExecutionContext tests for FetchResponse return type
TheRealAgentK Apr 9, 2026
ea75516
Add tests for FetchResponse dataclass and headers
TheRealAgentK Apr 9, 2026
c634fce
Fix: preserve pytest exit code with pipefail in CI
TheRealAgentK Apr 9, 2026
e9cef3f
Add testing and coverage documentation to AGENTS.md, README.md, and R…
TheRealAgentK Apr 9, 2026
c9deb10
Add tests to reach 99% coverage: default config path, polling trigger…
TheRealAgentK Apr 10, 2026
f03a688
Add CI, PyPI, Python, and license badges to READMEs; add coverage bad…
TheRealAgentK Apr 10, 2026
2352782
Add coverage badge to READMEs
TheRealAgentK Apr 10, 2026
949272a
Update gistID for coverage badge
TheRealAgentK Apr 10, 2026
856511d
Include commit hash and message in coverage report title
TheRealAgentK Apr 10, 2026
773c888
Add release notes step to RELEASING.md and action-error-demo sample t…
TheRealAgentK Apr 10, 2026
16aea07
Use actual PR head commit for coverage report title instead of merge …
TheRealAgentK Apr 10, 2026
1061a3a
Show commit message and author in coverage report title
TheRealAgentK Apr 10, 2026
6dc609d
Use GitHub username for coverage title and always show coverage table
TheRealAgentK Apr 10, 2026
11d472a
Replace MishaKav action with custom flat coverage comment
TheRealAgentK Apr 10, 2026
71364c5
Fix coverage comment: write markdown to file to avoid backtick escapi…
TheRealAgentK Apr 10, 2026
05d9044
Link commit SHA and missing line numbers in coverage comment
TheRealAgentK Apr 10, 2026
463238a
Fix coverage parsing: use column 4 (Cover) not column 3 (Miss)
TheRealAgentK Apr 10, 2026
d733de7
Merge branch 'master' into feature/test-setup
TheRealAgentK Apr 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Build coverage comment
id: coverage
run: |
TOTAL=$(grep '^TOTAL' pytest-coverage.txt | awk '{print $(NF-1)}')
TOTAL=$(grep '^TOTAL' pytest-coverage.txt | awk '{print $4}')
echo "total=${TOTAL}" >> "$GITHUB_OUTPUT"

REPO_URL="${{ github.server_url }}/${{ github.repository }}"
Expand Down
Loading