Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
353 changes: 312 additions & 41 deletions README.md

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion docs/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ uv run pytest tests/unit/ -v

# Integration tests (requires Copilot CLI + auth)
uv run pytest tests/ -v -m copilot

# Per-file reports (generates one HTML report per test file)
uv run python scripts/run_all.py
```

## Code Quality
Expand All @@ -38,7 +41,9 @@ Pre-commit hooks run automatically on `git commit`.
```
src/pytest_codingagents/
├── __init__.py # Public API exports
├── plugin.py # pytest plugin entry point
├── plugin.py # pytest plugin entry point + analysis prompt hook
├── prompts/
│ └── coding_agent_analysis.md # AI analysis prompt template
└── copilot/
├── __init__.py # Copilot subpackage exports
├── agent.py # CopilotAgent dataclass
Expand Down
Loading