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
8f95b79c
Commit
8f95b79c
authored
Jan 19, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip test on pypy/libuv/travis.
parent
11360103
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/greentest/greentest/sysinfo.py
src/greentest/greentest/sysinfo.py
+1
-1
src/greentest/test__fileobject.py
src/greentest/test__fileobject.py
+4
-0
No files found.
src/greentest/greentest/sysinfo.py
View file @
8f95b79c
...
...
@@ -110,7 +110,7 @@ if RUNNING_ON_APPVEYOR:
EXPECT_POOR_TIMER_RESOLUTION
=
(
PYPY3
or
RUNNING_ON_APPVEYOR
or
(
LIBUV
and
PYPY
)
or
(
CFFI_BACKEND
and
RUN_COVERAGE
)
)
or
RUN_COVERAGE
)
CONN_ABORTED_ERRORS
=
[]
...
...
src/greentest/test__fileobject.py
View file @
8f95b79c
...
...
@@ -10,6 +10,8 @@ from gevent.fileobject import FileObject, FileObjectThread
import
greentest
from
greentest.sysinfo
import
PY3
from
greentest.flaky
import
reraiseFlakyTestRaceConditionLibuv
from
greentest.skipping
import
skipOnLibuvOnCIOnPyPy
class
Test
(
greentest
.
TestCase
):
...
...
@@ -80,6 +82,8 @@ class Test(greentest.TestCase):
finally
:
g
.
kill
()
@
skipOnLibuvOnCIOnPyPy
(
"This appears to crash on libuv/pypy/travis."
)
# No idea why, can't duplicate locally.
def
test_seek
(
self
):
fileno
,
path
=
tempfile
.
mkstemp
(
'.gevent.test__fileobject.test_seek'
)
self
.
addCleanup
(
os
.
remove
,
path
)
...
...
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