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
1524b07d
Commit
1524b07d
authored
Sep 30, 2015
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark a failing test on travis that can't be reproduced locally.
parent
1f357ae2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
known_failures.py
known_failures.py
+9
-0
No files found.
known_failures.py
View file @
1524b07d
...
@@ -157,6 +157,15 @@ if PY3:
...
@@ -157,6 +157,15 @@ if PY3:
'FLAKY test__socket.py'
,
'FLAKY test__socket.py'
,
]
]
if
sys
.
version_info
[:
2
]
==
(
3
,
3
)
and
os
.
environ
.
get
(
'TRAVIS'
)
==
'true'
:
# Builds after Sept 29th 2015 have all been failing here, but no code that could
# affect this was changed. Travis is using 3.3.5;
# locally I cannot reproduce with 3.3.6. Don't mark this FLAKY so that if it starts to
# work again we get a failure and can remove this
FAILING_TESTS
+=
[
'test__refcount_core.py'
]
if
COVERAGE
:
if
COVERAGE
:
# The gevent concurrency plugin tends to slow things
# The gevent concurrency plugin tends to slow things
# down and get us past our default timeout value. These
# down and get us past our default timeout value. These
...
...
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