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
2ff86199
Commit
2ff86199
authored
Jan 09, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More timing tweaks.
parent
a3417689
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
appveyor.yml
appveyor.yml
+3
-1
src/gevent/tests/known_failures.py
src/gevent/tests/known_failures.py
+11
-0
No files found.
appveyor.yml
View file @
2ff86199
...
...
@@ -153,7 +153,9 @@ cache:
build_script
:
# Build the compiled extension
# pip 19.1 (exactly) won't work; but 19.1.1 should with --no-use-pep517
# Try to get some things that don't wind up in the pip cache as
# built wheels if they're built during an isolated build.
-
"
%CMD_IN_ENV%
%PYEXE%
-m
pip
install
-U
pycparser
wheel
cython
setuptools
cffi
wrapt"
-
if not "%GWHEEL_ONLY%"=="true" %PYEXE% -m pip install -r dev-requirements.txt
test_script
:
...
...
src/gevent/tests/known_failures.py
View file @
2ff86199
...
...
@@ -384,6 +384,17 @@ if APPVEYOR or TRAVIS:
]
if
APPVEYOR
:
IGNORED_TESTS
+=
[
# This sometimes times out. It appears to happen when the
# times take too long and a test raises a FlakyTestTimeout error,
# aka a unittest.SkipTest error. This probably indicates that we're
# not cleaning something up correctly:
#
# .....ss
# GEVENTTEST_USE_RESOURCES=-network C:\Python38-x64\python.exe -u \
# -mgevent.tests.test__hub_join_timeout [code TIMEOUT] [took 100.4s]
'test__hub_join_timeout.py'
,
]
if
sys
.
version_info
[:
3
]
==
(
3
,
8
,
0
):
# For some reason this takes *way* too long, about 100s, which
# often goes just over the default timeout of 100s. This makes no sense.
...
...
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