Enable type-checking for tests#414
Merged
thierry-martinez merged 3 commits intoTeamGraphix:masterfrom Jan 21, 2026
Merged
Conversation
This commit adds type annotations in all test files that were previously not covered, fixing some annotations in the tensor-network backend along the way. It enables full type-checking with mypy and pyright while preserving existing functionality across the entire code base, except for `examples/`. **Related issue:** This PR continues the work started in TeamGraphix#302, TeamGraphix#308, TeamGraphix#312, and TeamGraphix#347.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #414 +/- ##
==========================================
- Coverage 86.65% 86.61% -0.04%
==========================================
Files 44 44
Lines 6150 6150
==========================================
- Hits 5329 5327 -2
- Misses 821 823 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
emlynsg
approved these changes
Jan 19, 2026
Contributor
emlynsg
left a comment
There was a problem hiding this comment.
Looks great to me, and passes Mypy locally and through CI.
thierry-martinez
added a commit
to thierry-martinez/graphix
that referenced
this pull request
Feb 11, 2026
This commit adds type annotations in all example modules, and refines the type of `PatternSimulator` constructor, so that the type parameter for states is automatically inferred from the `backend` argument. It enables full type-checking with mypy and pyright while preserving existing functionality across the entire code base. No files are ignored by the typers anymore. **Related issue:** This commit continues the work started in TeamGraphix#302, TeamGraphix#308, TeamGraphix#312, TeamGraphix#347, and TeamGraphix#414.
thierry-martinez
added a commit
that referenced
this pull request
Feb 23, 2026
This commit adds type annotations in all example modules, and refines the type of `PatternSimulator` constructor, so that the type parameter for states is automatically inferred from the `backend` argument. It enables full type-checking with mypy and pyright while preserving existing functionality across the entire code base. No files are ignored by the typers anymore. **Related issue:** This commit continues the work started in #302, #308, #312, #347, and #414.
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.
This commit adds type annotations in all test files that were previously not covered, fixing some annotations in the tensor-network backend along the way. It enables full type-checking with mypy and pyright while preserving existing functionality across the entire code base, except for
examples/.Related issue:
This PR continues the work started in #302, #308, #312, and #347.