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
e9ef480b
Commit
e9ef480b
authored
Sep 29, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis: enable debug python
- greentest.py: fix walk_modules() for python-dbg - update known_failures.txt
parent
37eb599d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
14 deletions
+34
-14
.travis.yml
.travis.yml
+21
-7
greentest/greentest.py
greentest/greentest.py
+6
-2
known_failures.txt
known_failures.txt
+7
-5
No files found.
.travis.yml
View file @
e9ef480b
...
@@ -5,19 +5,33 @@ python:
...
@@ -5,19 +5,33 @@ python:
-
"
2.7"
-
"
2.7"
env
:
env
:
-
EXTRA=1
-
EXTRA=1
-
GEVENTSETUP_EV_VERIFY=3
-
GEVENT_FILE=thread
-
GEVENT_FILE=thread
-
GEVENT_BACKEND=select GEVENTSETUP_EV_VERIFY=3
-
GEVENT_BACKEND=poll GEVENTSETUP_EV_VERIFY=3
-
GEVENT_BACKEND=signalfd
-
GEVENT_BACKEND=signalfd
# - GEVENT_BACKEND=nosigmask
# - GEVENT_BACKEND=noinotify
matrix
:
matrix
:
allow_failures
:
allow_failures
:
-
env
:
GEVENT_BACKEND=signalfd
-
env
:
GEVENT_BACKEND=signalfd
-
python
:
2.5
env
:
DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
include
:
-
python
:
2.7
env
:
DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
-
python
:
2.7
env
:
DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3 GEVENT_FILE=thread
-
python
:
2.7
env
:
GEVENT_BACKEND=select GEVENTSETUP_EV_VERIFY=3
-
python
:
2.7
env
:
GEVENT_BACKEND=poll GEVENTSETUP_EV_VERIFY=3
-
python
:
2.7
env
:
GEVENT_BACKEND=nosigmask,noinotify GEVENTSETUP_EV_VERIFY=3
-
python
:
2.6
env
:
DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
-
python
:
2.5
env
:
DEBUGPY=-dbg GEVENTSETUP_EV_VERIFY=3
install
:
install
:
-
deactivate
-
deactivate
-
export VER=$TRAVIS_PYTHON_VERSION
-
export VER=$TRAVIS_PYTHON_VERSION$DEBUGPY
-
sudo apt-get update -qq
-
sudo apt-get install -q python$VER
-
export PYTHON=/usr/bin/python$VER
-
export PYTHON=/usr/bin/python$VER
-
echo $PYTHON && $PYTHON --version
-
echo $PYTHON && $PYTHON --version
-
sudo -E ./travis_install_deps.sh
-
sudo -E ./travis_install_deps.sh
...
...
greentest/greentest.py
View file @
e9ef480b
...
@@ -388,8 +388,12 @@ def walk_modules(basedir=None, modpath=None, include_so=False):
...
@@ -388,8 +388,12 @@ def walk_modules(basedir=None, modpath=None, include_so=False):
for
p
,
m
in
walk_modules
(
path
,
modpath
+
fn
+
"."
):
for
p
,
m
in
walk_modules
(
path
,
modpath
+
fn
+
"."
):
yield
p
,
m
yield
p
,
m
continue
continue
if
fn
.
endswith
(
'.py'
)
and
fn
not
in
[
'__init__.py'
,
'core.py'
,
'ares.py'
,
'_util.py'
,
'_semaphore.py'
]:
if
fn
.
endswith
(
'.py'
):
yield
path
,
modpath
+
fn
[:
-
3
]
x
=
fn
[:
-
3
]
if
x
.
endswith
(
'_d'
):
x
=
x
[:
-
2
]
if
x
not
in
[
'__init__'
,
'core'
,
'ares'
,
'_util'
,
'_semaphore'
]:
yield
path
,
modpath
+
x
elif
include_so
and
fn
.
endswith
(
'.so'
):
elif
include_so
and
fn
.
endswith
(
'.so'
):
if
fn
.
endswith
(
'_d.so'
):
if
fn
.
endswith
(
'_d.so'
):
yield
path
,
modpath
+
fn
[:
-
5
]
yield
path
,
modpath
+
fn
[:
-
5
]
...
...
known_failures.txt
View file @
e9ef480b
...
@@ -18,8 +18,10 @@ win32 * C:\Python27\python.exe -u -m monkey_test test_subprocess.py
...
@@ -18,8 +18,10 @@ win32 * C:\Python27\python.exe -u -m monkey_test test_subprocess.py
win32 * C:\Python27\python.exe -u -m monkey_test --Event test_subprocess.py
win32 * C:\Python27\python.exe -u -m monkey_test --Event test_subprocess.py
# these need investigating:
# these need investigating:
* * /usr/bin/python2.5 -u -m monkey_test --Event test_urllib2net.py
* * /usr/bin/python2.5(-dbg)? -u -m monkey_test --Event test_urllib2net.py
* * /usr/bin/python2.5 -u -m monkey_test test_urllib2net.py
* * /usr/bin/python2.5(-dbg)? -u -m monkey_test test_urllib2net.py
* * /usr/bin/python2.5 -u test__threading_vs_settrace.py
* * /usr/bin/python2.5(-dbg)? -u test__threading_vs_settrace.py
* * /usr/bin/python2.5 -u test__example_portforwarder.py
* * /usr/bin/python2.5(-dbg)? -u test__example_portforwarder.py
* * /usr/bin/python2.5 -u test__socket_close.py
* * /usr/bin/python2.5(-dbg)? -u test__socket_close.py
* * /usr/bin/python2.[567]-dbg -u test__backdoor.py
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