From 534eb1909343ffa162243d90cc08204cfe8a8061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=A9na=C3=ABl=20Muller?= Date: Thu, 21 Mar 2019 11:11:49 +0100 Subject: [PATCH] add ref to reason for unconsistent test --- tests/func/fake_api/test_fake_api_aiohttp_serpyco.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/func/fake_api/test_fake_api_aiohttp_serpyco.py b/tests/func/fake_api/test_fake_api_aiohttp_serpyco.py index 0857daf..8c6b341 100644 --- a/tests/func/fake_api/test_fake_api_aiohttp_serpyco.py +++ b/tests/func/fake_api/test_fake_api_aiohttp_serpyco.py @@ -126,7 +126,10 @@ async def test_func__test_fake_api_endpoints_ok__aiohttp(test_client,): resp = await app.delete("/users/1") assert resp.status == 204 -@pytest.mark.xfail(reason='unconsistent test') +@pytest.mark.xfail( + reason="unconsistent test. " + "see issue #147(https://github.com/algoo/hapic/issues/147)" +) async def test_func__test_fake_api_doc_ok__aiohttp_serpyco(test_client): app = web.Application() controllers = AiohttpSerpycoController()