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
5ea878ef
Commit
5ea878ef
authored
Jul 08, 2023
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable coverals reporting on mac. It still doesn't work.
parent
dd64f86b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
.github/workflows/ci.yml
.github/workflows/ci.yml
+5
-0
src/gevent/testing/patched_tests_setup.py
src/gevent/testing/patched_tests_setup.py
+8
-0
No files found.
.github/workflows/ci.yml
View file @
5ea878ef
...
...
@@ -306,6 +306,11 @@ jobs:
python -m coverage report -i || true
-
name
:
Coveralls Parallel
uses
:
coverallsapp/github-action@v2
# 20230707: On macOS, this installs coveralls from homebrew.
# It then runs ``coveralls report``. But that is producing
# a usage error from ``coveralls`` (report is not recognized) Presumably the
# brew and action versions are out of sync?
if
:
(startsWith(runner.os, 'Linux'))
with
:
flag-name
:
run-${{ join(matrix.*, '-') }}
parallel
:
true
...
...
src/gevent/testing/patched_tests_setup.py
View file @
5ea878ef
...
...
@@ -558,6 +558,14 @@ if WIN:
if
sys
.
version_info
[:
2
]
<=
(
3
,
9
):
disabled_tests
+=
[
'test_context.HamtTest.test_hamt_collision_3'
,
# Sometimes fails::
#
# self.assertIn('got more than ', str(cm.exception))
# AssertionError: 'got more than ' not found in
# 'Remote end closed connection without response'
#
'test_httplib.BasicTest.test_overflowing_header_limit_after_100'
,
]
# These are a problem on 3.5; on 3.6+ they wind up getting (accidentally) disabled.
...
...
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