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
96d49c9c
Commit
96d49c9c
authored
Jan 24, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give up and mark the test as flaky.
parent
8b5206ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
src/greentest/greentest/testrunner.py
src/greentest/greentest/testrunner.py
+2
-1
src/greentest/known_failures.py
src/greentest/known_failures.py
+9
-0
No files found.
src/greentest/greentest/testrunner.py
View file @
96d49c9c
...
...
@@ -30,7 +30,8 @@ if RUNNING_ON_CI:
# tests that don't do well when run on busy box
RUN_ALONE
=
[
'test__threadpool.py'
,
'test__examples.py'
'test__examples.py'
,
'test_threading.py'
,
]
# tests that can't be run when coverage is enabled
...
...
src/greentest/known_failures.py
View file @
96d49c9c
...
...
@@ -69,6 +69,15 @@ if sys.platform == 'win32':
'FLAKY test__fileobject.py'
,
]
if
PYPY
and
LIBUV
:
FAILING_TESTS
+=
[
# This one sometimes seems to just stop right after
# patching is done. It passes on a local win 10 vm, and the main
# test_threading_2.py does as well.
# https://ci.appveyor.com/project/denik/gevent/build/1.0.1275/job/3uxm8y463v3p6d87#L1182
'FLAKY test_threading.py'
,
]
if
PY3
:
FAILING_TESTS
+=
[
# test_set_and_clear in Py3 relies on 5 threads all starting and
...
...
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