You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @cjolowicz, thanks for this excellent framework. That's what I was looking for. More than 30 test help to move my Python project to a higher quality level. Now I managed to get all these tests to state "successful".
Then I imported an external library (Inquirer) and boom: most of the tests failed because of missing type hints!
Is there a way to tell nox (with mypy and typeguard) not to type check this external library?
The text was updated successfully, but these errors were encountered:
I'm assuming you're getting an error that mypy cannot find type definitions for a Python package? You can disable these errors by ignoring missing imports.
@Lonerider2010 I have a couple of projects using this templates that also use/used inquirer (now I am mostly using prompt-toolkit which has type annotations). I am also maintainer of Inquirer BTW, but type-annotations are not really in the roadmap I would say.
Hello @cjolowicz, thanks for this excellent framework. That's what I was looking for. More than 30 test help to move my Python project to a higher quality level. Now I managed to get all these tests to state "successful".
Then I imported an external library (Inquirer) and boom: most of the tests failed because of missing type hints!
Is there a way to tell nox (with mypy and typeguard) not to type check this external library?
The text was updated successfully, but these errors were encountered: