Add tox for standardized test orchestration across environments#214
Merged
rahuldevikar761 merged 1 commit intomainfrom Mar 30, 2026
Merged
Add tox for standardized test orchestration across environments#214rahuldevikar761 merged 1 commit intomainfrom
rahuldevikar761 merged 1 commit intomainfrom
Conversation
Integrate tox 4 with tox-uv plugin to provide a single entry point for running lint, format, unit tests (Python 3.11/3.12), integration tests, and constraint verification. CI updated to use tox environments instead of direct tool invocations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Dependency ReviewThe following issues were found:
Snapshot WarningsEnsure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. License Issuesuv.lock
OpenSSF ScorecardScorecard details
Scanned Files
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds tox (tox 4 + tox-uv) as a standardized entry point to run lint/format, unit tests across Python 3.11/3.12, integration tests, and constraint verification, and updates CI/docs to use those tox environments.
Changes:
- Add tox + tox-uv to workspace tooling and introduce
[tool.tox]configuration inpyproject.toml. - Document tox-based workflows in
CLAUDE.md. - Update CI to invoke tox environments for lint/format/tests/constraint verification, and ignore
.tox/.
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| pyproject.toml | Adds tox/tox-uv deps, centralized constraints, and tox env definitions for lint/format/unit/integration/constraints. |
| CLAUDE.md | Adds developer-facing commands for running common workflows through tox. |
| .gitignore | Ignores tox’s .tox/ virtualenv directory. |
| .github/workflows/ci.yml | Switches CI steps to run tox environments instead of direct ruff/pytest/script invocations. |
sellakumaran
approved these changes
Mar 30, 2026
nikhilNava
approved these changes
Mar 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Integrate tox 4 with tox-uv plugin to provide a single entry point for running lint, format, unit tests (Python 3.11/3.12), integration tests, and constraint verification. CI updated to use tox environments instead of direct tool invocations.