-
-
Notifications
You must be signed in to change notification settings - Fork 377
Bump dependencies from commit e242fb #3363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
0d88463
58c6bd5
7592c55
c6bd650
8926f7d
12614b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -175,6 +175,10 @@ def no_underscores(symbols: Iterable[str]) -> set[str]: | |
| completions = script.complete() | ||
| static_names = no_underscores(c.name for c in completions) | ||
| elif tool == "mypy": | ||
| if sys.implementation.name != "cpython": | ||
| # https://github.com/python/mypy/issues/20329 | ||
| pytest.skip("mypy does not support pypy") | ||
|
|
||
| if not RUN_SLOW: # pragma: no cover | ||
| pytest.skip("use --run-slow to check against mypy") | ||
|
|
||
|
|
@@ -272,6 +276,10 @@ def no_hidden(symbols: Iterable[str]) -> set[str]: | |
| if tool == "jedi" and sys.implementation.name != "cpython": | ||
| pytest.skip("jedi does not support pypy") | ||
|
|
||
| if tool == "mypy" and sys.implementation.name != "cpython": | ||
| # https://github.com/python/mypy/issues/20329 | ||
| pytest.skip("mypy does not support pypy") | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @A5rocks @CoolCat467 this caused one line below to become uncovered:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ack, why didn't that show up as a status for the PR! (or maybe I missed it :/) |
||
|
|
||
| if tool == "mypy": | ||
| cache = Path.cwd() / ".mypy_cache" | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.