Skip to content

Commit c4e3fb6

Browse files
committed
Ignore failure to load thriftpy2 in coverage
Signed-off-by: Roger Aiudi <[email protected]>
1 parent 9bab1d8 commit c4e3fb6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aiohappybase/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
try:
3030
from thriftpy2_httpx_client import make_aio_client as make_http_client
31-
except ImportError:
31+
except ImportError: # pragma: no cover
3232
async def make_http_client(*_, **__):
3333
raise RuntimeError("thriftpy2_httpx_client is required to"
3434
" use the HTTP client protocol.")

aiohappybase/sync/connection.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
try:
2222
from thriftpy2_httpx_client import make_sync_client as make_http_client
23-
except ImportError:
24-
async def make_http_client(*_, **__):
23+
except ImportError: # pragma: no cover
24+
def make_http_client(*_, **__):
2525
raise RuntimeError("thriftpy2_httpx_client is required to"
2626
" use the HTTP client protocol.")
2727

0 commit comments

Comments
 (0)