Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
445f055c
Commit
445f055c
authored
May 24, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exclude a test that crashes in PyPy.
parent
77092108
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
tests/run/test_coroutines_pep492.pyx
tests/run/test_coroutines_pep492.pyx
+7
-0
No files found.
tests/run/test_coroutines_pep492.pyx
View file @
445f055c
...
...
@@ -70,6 +70,12 @@ except ImportError:
return
(
<
PyObject
*>
obj
).
ob_refcnt
def
no_pypy
(
f
):
import
platform
if
platform
.
python_implementation
()
==
'PyPy'
:
return
unittest
.
skip
(
"excluded in PyPy"
)
# compiled exec()
def
exec
(
code_string
,
l
,
g
):
from
Cython.Shadow
import
inline
...
...
@@ -2406,6 +2412,7 @@ class CoroutineTest(unittest.TestCase):
finally:
aw.close()
@no_pypy
def test_fatal_coro_warning(self):
# Issue 27811
async def func(): pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment