Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
c6d869f4
Commit
c6d869f4
authored
Feb 20, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip a test that hangs on appveyor. Could not reproduce locally.
parent
77aabaa8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
src/greentest/greentest/__init__.py
src/greentest/greentest/__init__.py
+1
-0
src/greentest/greentest/skipping.py
src/greentest/greentest/skipping.py
+5
-2
src/greentest/test__core.py
src/greentest/test__core.py
+7
-3
No files found.
src/greentest/greentest/__init__.py
View file @
c6d869f4
...
...
@@ -69,6 +69,7 @@ from greentest.skipping import skipOnPyPyOnCI
from
greentest.skipping
import
skipOnPyPy3
from
greentest.skipping
import
skipIf
from
greentest.skipping
import
skipOnLibuv
from
greentest.skipping
import
skipOnLibuvOnWin
from
greentest.skipping
import
skipOnLibuvOnCI
from
greentest.skipping
import
skipOnLibuvOnCIOnPyPy
from
greentest.skipping
import
skipOnLibuvOnPyPyOnWin
...
...
src/greentest/greentest/skipping.py
View file @
c6d869f4
...
...
@@ -41,6 +41,7 @@ skipOnPyPy3OnCI = _do_not_skip
skipOnPyPy3
=
_do_not_skip
skipOnLibuv
=
_do_not_skip
skipOnLibuvOnWin
=
_do_not_skip
skipOnLibuvOnCI
=
_do_not_skip
skipOnLibuvOnCIOnPyPy
=
_do_not_skip
skipOnLibuvOnPyPyOnWin
=
_do_not_skip
...
...
@@ -91,5 +92,7 @@ if sysinfo.LIBUV:
if
sysinfo
.
PYPY
:
skipOnLibuvOnCIOnPyPy
=
unittest
.
skip
if
sysinfo
.
PYPY
and
sysinfo
.
WIN
:
skipOnLibuvOnPyPyOnWin
=
unittest
.
skip
if
sysinfo
.
WIN
:
skipOnLibuvOnWin
=
unittest
.
skip
if
sysinfo
.
PYPY
:
skipOnLibuvOnPyPyOnWin
=
unittest
.
skip
src/greentest/test__core.py
View file @
c6d869f4
...
...
@@ -88,9 +88,13 @@ class TestWatchersDefault(TestWatchers):
def
destroyOne
(
self
,
loop
):
return
# XXX: This crash may be fixed
@
greentest
.
skipOnLibuvOnPyPyOnWin
(
"This crashes with PyPy 5.10.0, only on Windows. "
"See https://ci.appveyor.com/project/denik/gevent/build/1.0.1380/job/lrlvid6mkjtyrhn5#L1103"
)
# XXX: The crash may be fixed? The hang showed up after the crash was
# reproduced and fixed on linux and OS X.
@
greentest
.
skipOnLibuvOnWin
(
"This crashes with PyPy 5.10.0, only on Windows. "
"See https://ci.appveyor.com/project/denik/gevent/build/1.0.1380/job/lrlvid6mkjtyrhn5#L1103 "
"It has also timed out, but only on Appveyor CPython 3.6; local CPython 3.6 does not. "
"See https://ci.appveyor.com/project/denik/gevent/build/1.0.1414/job/yn7yi8b53vtqs8lw#L1523"
)
class
TestWatchersDefaultDestroyed
(
TestWatchers
):
def
_makeOne
(
self
):
...
...
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