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
39178fe8
Commit
39178fe8
authored
Apr 06, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PyPy3/trusty: disable test_ssl.ThreadedTests.test_dh_params
This started failing on the newer Ubuntu. [skip appveyor]
parent
cbc1b222
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
src/greentest/patched_tests_setup.py
src/greentest/patched_tests_setup.py
+13
-2
No files found.
src/greentest/patched_tests_setup.py
View file @
39178fe8
...
...
@@ -4,6 +4,8 @@ import sys
import
os
import
re
TRAVIS
=
os
.
environ
.
get
(
"TRAVIS"
)
==
"true"
# By default, test cases are expected to switch and emit warnings if there was none
# If a test is found in this list, it's expected not to switch.
no_switch_tests
=
'''test_patched_select.SelectTestCase.test_error_conditions
...
...
@@ -356,7 +358,7 @@ if sys.version_info[0] == 3:
'test_socket.GeneralModuleTests.testGetaddrinfo'
,
]
if
os
.
environ
.
get
(
"TRAVIS"
)
==
"true"
:
if
TRAVIS
:
disabled_tests
+=
[
# test_cwd_with_relative_executable tends to fail
# on Travis...it looks like the test processes are stepping
...
...
@@ -384,6 +386,15 @@ if hasattr(sys, 'pypy_version_info') and sys.version_info[:2] == (3, 3):
'test_httplib.HTTPSTest.test_networked_good_cert'
,
]
if
TRAVIS
:
disabled_tests
+=
[
# When we switched to Ubuntu 14.04 trusty, this started
# failing with "_ssl.SSLError: [SSL] dh key too small", but it
# was fine on 12.04. But we have to switch to be able to
# install PyPy? 5.7.1.
'test_ssl.ThreadedTests.test_dh_params'
,
]
disabled_tests
+=
[
# This raises 'RuntimeError: reentrant call' when exiting the
# process tries to close the stdout stream; no other platform does this.
...
...
@@ -508,7 +519,7 @@ if sys.version_info[:2] >= (3, 4):
'test_socket.InterruptedSendTimeoutTest.testInterruptedSendmsgTimeout'
,
]
if
os
.
environ
.
get
(
'TRAVIS'
)
==
'true'
:
if
TRAVIS
:
disabled_tests
+=
[
'test_subprocess.ProcessTestCase.test_double_close_on_error'
,
# This test is racy or OS-dependent. It passes locally (sufficiently fast machine)
...
...
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