tests: branch coverage in _utils.py
, middleware/gzip.py
, routing.py
and requests.py
#2816
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Related to Issue #2452
This PR covers all 9 missing cases.
starlette/_utils.py
78–82Extend the
# pragma: no cover
to include the condition.starlette/middleware/gzip.py
16–22, 91–endRelated to conditional cases with scope type and message type.
Added
# pragma: no branch
to all cases.starlette/routing.py
199–202, 401–430, 484–496Related to conditional cases where the scope type is not 'http' or 'websocket'.
Added
# pragma: no branch
to all cases.starlette/requests.py
114–116, 233–225, 253–278Although it's from
requests.py
, the test related to lines 114–116 was added intest_routing.py
.For the other two cases,
# pragma: no branch
was added.Checklist