Skip to content

Commit

Permalink
test: exclude failing test from coverage check
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Fiedler <[email protected]>
  • Loading branch information
miketheman committed Feb 29, 2024
1 parent 0215141 commit 9775bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyramid_openapi3/tests/test_contenttypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_post_json(self) -> None:
# FIXME: Something deep in request validation isn't happy right now.
# Might be related: https://github.com/Pylons/pyramid_openapi3/issues/199
@unittest.expectedFailure
def test_post_form(self) -> None:
def test_post_form(self) -> None: # pragma: no cover
"""Post with `application/x-www-form-urlencoded`."""

res = self._testapp().post("/foo", params={"bar": "baz"}, status=200)
Expand Down

0 comments on commit 9775bbc

Please sign in to comment.