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
436f8d13
Commit
436f8d13
authored
Apr 06, 2017
by
Jason Madden
Committed by
GitHub
Apr 06, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #963 from gevent/pypy571
Pypy2 5.7.1
parents
db7db6a5
39178fe8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
.travis.yml
.travis.yml
+1
-0
CHANGES.rst
CHANGES.rst
+3
-0
Makefile
Makefile
+2
-2
scripts/install.sh
scripts/install.sh
+1
-1
src/greentest/patched_tests_setup.py
src/greentest/patched_tests_setup.py
+13
-2
No files found.
.travis.yml
View file @
436f8d13
# .travis.yml based on https://github.com/DRMacIver/hypothesis/blob/master/.travis.yml
language
:
c
sudo
:
false
dist
:
trusty
env
:
global
:
...
...
CHANGES.rst
View file @
436f8d13
...
...
@@ -9,6 +9,9 @@
- Testing on Python 3.5 now uses Python 3.5.3 due to SSL changes. See
:issue:`943`.
- Linux CI has been updated from Ubuntu 12.04 to Ubuntu 14.04 since
the former has reached EOL.
- Linux CI now tests on PyPy2 5.7.1, updated from PyPy2 5.6.0.
- Python 2 sockets are compatible with the ``SOCK_CLOEXEC`` flag found
on Linux. They no longer pass the socket type or protocol to
``getaddrinfo`` when ``connect`` is called. Reported in :issue:`944`
...
...
Makefile
View file @
436f8d13
...
...
@@ -109,7 +109,7 @@ PY27=$(BUILD_RUNTIMES)/snakepit/python2.7.13
PY34
=
$(BUILD_RUNTIMES)
/snakepit/python3.4.5
PY35
=
$(BUILD_RUNTIMES)
/snakepit/python3.5.3
PY36
=
$(BUILD_RUNTIMES)
/snakepit/python3.6.0
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
6
PYPY
=
$(BUILD_RUNTIMES)
/snakepit/pypy5
71
PYPY3
=
$(BUILD_RUNTIMES)
/snakepit/pypy3.3_5.5
TOOLS
=
$(BUILD_RUNTIMES)
/tools
...
...
@@ -178,7 +178,7 @@ test-py36: $(PY36)
PYTHON
=
python3.6.0
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/python3.6.0/bin:
$(PATH)
make develop toxtest
test-pypy
:
$(PYPY)
PYTHON
=
$(PYPY)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
6
/bin:
$(PATH)
make develop toxtest
PYTHON
=
$(PYPY)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy5
71
/bin:
$(PATH)
make develop toxtest
test-pypy3
:
$(PYPY3)
PYTHON
=
$(PYPY3)
PIP
=
pip
PATH
=
$(BUILD_RUNTIMES)
/versions/pypy3.3_5.5/bin:
$(PATH)
make develop toxtest
...
...
scripts/install.sh
View file @
436f8d13
...
...
@@ -103,7 +103,7 @@ for var in "$@"; do
install
3.6.0 python3.6.0
;;
pypy
)
install
pypy2-5.
6.0 pypy56
install
pypy2-5.
7.1 pypy571
;;
pypy3
)
install
pypy3.3-5.5-alpha pypy3.3_5.5
...
...
src/greentest/patched_tests_setup.py
View file @
436f8d13
...
...
@@ -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