Exclude open_print_tag directory from mypy and pylint CI checks#65
Merged
bofh69 merged 2 commits intosupport-openprinttagfrom Jan 14, 2026
Merged
Exclude open_print_tag directory from mypy and pylint CI checks#65bofh69 merged 2 commits intosupport-openprinttagfrom
bofh69 merged 2 commits intosupport-openprinttagfrom
Conversation
Co-authored-by: bofh69 <1444315+bofh69@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add support for OpenPrintTag tags
Exclude open_print_tag directory from mypy and pylint CI checks
Jan 13, 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.
The CI workflows were running mypy and pylint on the
open_print_tag/directory, which is external code with Python 3.10+ syntax and incompatible type annotations, causing build failures.Changes
.github/workflows/mypy.yml: Addedgrep -v 'open_print_tag/'to exclude directory from type checking.github/workflows/pylint.yml: Addedgrep -v 'open_print_tag/'to exclude directory from lintingmypy.ini: Addedpn5180_tagomaticto ignore_missing_imports for PN5180 reader supportThe filters are applied to
git ls-filesoutput, preventing checks on external code while maintaining coverage of the main codebase.✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.