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
Following up on issue HypothesisWorks/hypothesis#3753: the failing example in that issue always shows the test.py file as the originating file, which is incorrect:
test.py:1139:50: error: Cannot use a covariant type variable as a parameter [misc]
The file containing the failing type check is called from test.py.
To Reproduce
See the referenced issue: install Hypothesis and mypy using the mentioned versions, and run the example.
Expected Behavior
Error location should show the file that contains the failing type check.
Actual Behavior
Error location shows the file file that contains the call to the failing type check.
Is it okay if I use this thread to show my discoveries of the bug, to get feedback? or is there other way to get some help if I am stuck ( If I am stuck for a week)?
Following up on issue HypothesisWorks/hypothesis#3753: the failing example in that issue always shows the
test.py
file as the originating file, which is incorrect:The file containing the failing type check is called from
test.py
.To Reproduce
See the referenced issue: install Hypothesis and mypy using the mentioned versions, and run the example.
Expected Behavior
Error location should show the file that contains the failing type check.
Actual Behavior
Error location shows the file file that contains the call to the failing type check.
Your Environment
mypy --show-traceback --config-file pyproject.toml test.py
pyproject.toml
:python 3.10.13 (main, Aug 25 2023, 01:44:57) [Clang 14.0.3 (clang-1403.0.22.14.1)] on darwin
The text was updated successfully, but these errors were encountered: