We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a5df76 commit 75cffe2Copy full SHA for 75cffe2
1 file changed
coconut/tests/constants_test.py
@@ -98,8 +98,8 @@ def test_imports(self):
98
or PYPY and new_imp.startswith("tkinter")
99
# don't test trollius on PyPy
100
or PYPY and old_imp == "trollius"
101
- # don't test typing_extensions on Python 2
102
- or PY2 and old_imp.startswith("typing_extensions")
+ # don't test typing_extensions, async_generator on Python 2
+ or PY2 and old_imp.startswith(("typing_extensions", "async_generator"))
103
):
104
pass
105
elif sys.version_info >= ver_cutoff:
0 commit comments