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
f0432a8a
Commit
f0432a8a
authored
Apr 14, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add libuv to the test matrix. fix prospector.
parent
0b40104c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
2 deletions
+15
-2
.travis.yml
.travis.yml
+1
-0
Makefile
Makefile
+3
-0
src/gevent/libuv/loop.py
src/gevent/libuv/loop.py
+0
-1
src/gevent/os.py
src/gevent/os.py
+1
-0
tox.ini
tox.ini
+10
-1
No files found.
.travis.yml
View file @
f0432a8a
...
...
@@ -9,6 +9,7 @@ env:
matrix
:
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as posible
-
TASK=test-py27-libuv
-
TASK=test-py27-noembed
-
TASK=test-pypy
-
TASK=test-py36
...
...
Makefile
View file @
f0432a8a
...
...
@@ -186,6 +186,9 @@ test-pypy3: $(PYPY3)
test-py27-cffi
:
$(PY27)
GEVENT_CORE_CFFI_ONLY
=
1
PYTHON
=
python2.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7/bin:
$(PATH)
make develop toxtest
test-py27-libuv
:
$(PY27)
GEVENT_CORE_CFFI_ONLY
=
libuv
PYTHON
=
python2.7
PATH
=
$(BUILD_RUNTIMES)
/versions/python2.7/bin:
$(PATH)
make develop toxtest
test-py27-noembed
:
$(PY27)
cd
deps/libev
&&
./configure
--disable-dependency-tracking
&&
make
cd
deps/c-ares
&&
./configure
--disable-dependency-tracking
&&
make
...
...
src/gevent/libuv/loop.py
View file @
f0432a8a
...
...
@@ -5,7 +5,6 @@ libuv loop implementation
from
__future__
import
absolute_import
,
print_function
import
os
import
sys
from
collections
import
defaultdict
from
collections
import
namedtuple
import
signal
...
...
src/gevent/os.py
View file @
f0432a8a
...
...
@@ -277,6 +277,7 @@ if hasattr(os, 'fork'):
.. versionchanged:: 1.2a1
More cases are handled in a cooperative manner.
"""
# pylint: disable=too-many-return-statements
# XXX Does not handle tracing children
# So long as libev's loop doesn't run, it's OK to add
...
...
tox.ini
View file @
f0432a8a
[tox]
envlist
=
py27,py33,py34,py35,py36,py27-cffi,py
py,pypy3
,lint
py27,py33,py34,py35,py36,py27-cffi,py
27-libuv,pypy
,lint
[testenv]
deps
=
...
...
@@ -48,6 +48,15 @@ setenv =
commands
=
make
toxtest
[testenv:py27-libuv]
basepython
=
python2.7
setenv
=
GEVENT_CORE_CFFI_ONLY
=
libuv
commands
=
make
toxtest
[testenv:leak]
basepython
=
python2.7
...
...
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