Skip to content

Commit 5518789

Browse files
committed
associate skipped broken tests with new issue #221
1 parent aef13fd commit 5518789

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/ext/unit/test_aiohttp.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ async def hello(request):
156156
data = await resp.json()
157157
assert "bob" == data.get("name")
158158

159-
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76")
159+
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221")
160160
async def test_aiohttp_output_body__error__incorrect_output_body(self, aiohttp_client, loop):
161161
hapic = Hapic(async_=True, processor_class=MarshmallowProcessor)
162162

@@ -457,7 +457,7 @@ async def update_avatar(request: Request, hapic_data: HapicData):
457457
resp = await client.put("/avatar", data={"avatar": io.StringIO("text content of file")})
458458
assert resp.status == 200
459459

460-
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76")
460+
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221")
461461
async def test_unit__post_file__ok__missing_file(self, aiohttp_client, loop):
462462
hapic = Hapic(async_=True, processor_class=MarshmallowProcessor)
463463

@@ -485,7 +485,7 @@ async def update_avatar(request: Request, hapic_data: HapicData):
485485
"code": None,
486486
} == json_
487487

488-
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76")
488+
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221")
489489
async def test_request_header__ok__lowercase_key(self, aiohttp_client):
490490
hapic = Hapic(MarshmallowProcessor, True)
491491

tests/func/fake_api/test_fake_api_aiohttp_serpyco.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def get_aiohttp_serpyco_app_hapic(app):
2323
return hapic
2424

2525

26-
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76")
26+
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221")
2727
async def test_func__test_fake_api_endpoints_ok__aiohttp(
2828
aiohttp_client,
2929
):
@@ -116,7 +116,7 @@ async def test_func__test_fake_api_endpoints_ok__aiohttp(
116116

117117

118118

119-
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76")
119+
@pytest.mark.skip("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221")
120120
async def test_func__test_fake_api_doc_ok__aiohttp_serpyco(aiohttp_client):
121121
app = web.Application()
122122
controllers = AiohttpSerpycoController()

0 commit comments

Comments
 (0)