Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions trio/_tests/test_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ def public_modules(module):
)
def test_static_tool_sees_all_symbols(tool, modname, tmpdir):
global mypy_cache_updated

if (
tool == "pylint"
and sys.version_info < (3, 8)
and sys.implementation.name == "pypy"
):
pytest.xfail("typing_extensions 4.7.0 is broken on pypy 3.7")

module = importlib.import_module(modname)

def no_underscores(symbols):
Expand Down