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
fe00ccd0
Commit
fe00ccd0
authored
Apr 26, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to set the condition for appveyor.
parent
0aed4fe0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/gevent/testing/monkey_test.py
src/gevent/testing/monkey_test.py
+4
-0
No files found.
src/gevent/testing/monkey_test.py
View file @
fe00ccd0
...
...
@@ -21,12 +21,16 @@ monkey.patch_all(**kwargs)
from
.sysinfo
import
RUNNING_ON_APPVEYOR
from
.sysinfo
import
PY37
from
.patched_tests_setup
import
disable_tests_in_source
from
.
import
support
if
RUNNING_ON_APPVEYOR
and
PY37
:
# 3.7 added a stricter mode for thread cleanup.
# It appears to be unstable on Windows (at least appveyor)
# and test_socket.py constantly fails with an extra thread
# on some random test. We disable it entirely.
# XXX: Figure out how to make a *definition* in ./support.py actually
# override the original in test.support, without having to
# manually set it
import
contextlib
@
contextlib
.
contextmanager
def
wait_threads_exit
(
timeout
=
None
):
# pylint:disable=unused-argument
...
...
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