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
77345daa
Commit
77345daa
authored
Apr 27, 2014
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enumerate current PY3 failures
parent
266c7aaf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
3 deletions
+39
-3
.travis.yml
.travis.yml
+0
-3
known_failures.py
known_failures.py
+39
-0
No files found.
.travis.yml
View file @
77345daa
...
...
@@ -4,9 +4,6 @@ python:
-
"
2.7"
-
"
3.3"
-
"
pypy"
matrix
:
allow_failures
:
-
python
:
"
3.3"
script
:
-
if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then PYTHON=pypy make travis_pypy; fi
-
if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then PYTHON=python$TRAVIS_PYTHON_VERSION make travis_cpython; fi
...
...
known_failures.py
View file @
77345daa
...
...
@@ -7,6 +7,7 @@ import sys
CPYTHON_DBG
=
hasattr
(
sys
,
'gettotalrefcount'
)
PYPY
=
hasattr
(
sys
,
'pypy_version_info'
)
PY3
=
sys
.
version_info
[
0
]
>=
3
FAILING_TESTS
=
[
...
...
@@ -84,6 +85,44 @@ if PYPY:
]
if
PY3
:
# No idea / TODO
FAILING_TESTS
+=
'''
test__threading_vs_settrace.py
test__example_udp_server.py
test_close_backend_fd.py
test__examples.py
test__pool.py
test___example_servers.py
test__example_udp_client.py
test__os.py
test__backdoor.py
test_threading_2.py
test_ares_timeout.py
test__refcount.py
test__socket.py
test__subprocess.py
test__all__.py
test__fileobject.py
test__pywsgi.py
test__socket_ex.py
test__example_echoserver.py
test__subprocess_poll.py
test__order.py
test__ssl.py
test__makefile_ref.py
test__socketpair.py
test_queue.py
test__server_pywsgi.py
test__core_stat.py
test__server.py
test__subprocess_interrupted.py
test__example_portforwarder.py
test__execmodules.py
test__greenio.py
'''
.
strip
().
split
()
if
__name__
==
'__main__'
:
import
pprint
pprint
.
pprint
(
FAILING_TESTS
)
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