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
a54bb019
Commit
a54bb019
authored
Oct 10, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch out test_cwd_with_relative_arg since it fails on travis.
parent
375c878c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
src/greentest/known_failures.py
src/greentest/known_failures.py
+0
-10
src/greentest/patched_tests_setup.py
src/greentest/patched_tests_setup.py
+11
-0
No files found.
src/greentest/known_failures.py
View file @
a54bb019
...
...
@@ -184,16 +184,6 @@ if PY3:
'FLAKY test__socket_dns.py'
,
]
if
os
.
environ
.
get
(
"TRAVIS"
)
==
"true"
:
FAILING_TESTS
+=
[
# test_cwd_with_relative_executable tends to fail
# on Travis...it looks like the test processes are stepping
# on each other and messing up their temp directories
# Disabling this...um, disablement for now. py36 has some genuine failures
# that we need to be sure to catch. And maybe this is solved now?
#'FLAKY test_subprocess.py'
]
if
LEAKTEST
:
FAILING_TESTS
+=
[
'FLAKY test__threadpool.py'
]
# refcount problems:
...
...
src/greentest/patched_tests_setup.py
View file @
a54bb019
...
...
@@ -453,6 +453,17 @@ if sys.version_info[:2] >= (3, 5):
]
if
os
.
environ
.
get
(
"TRAVIS"
)
==
"true"
:
disabled_tests
+=
[
# test_cwd_with_relative_executable tends to fail
# on Travis...it looks like the test processes are stepping
# on each other and messing up their temp directories
# that we need to be sure to catch.
'test_subprocess.ProcessTestCase.test_cwd_with_relative_arg'
,
'test_subprocess.ProcessTestCaseNoPoll.test_cwd_with_relative_arg'
,
]
if
os
.
environ
.
get
(
'GEVENT_RESOLVER'
)
==
'ares'
:
disabled_tests
+=
[
# These raise different errors or can't resolve
...
...
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