Skip to content

Commit dacecc4

Browse files
committed
tests/integration: disable httpretty
1 parent 03f66e3 commit dacecc4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/integration/conftest.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from __future__ import annotations
2+
3+
from typing import TYPE_CHECKING
4+
5+
import pytest
6+
7+
8+
if TYPE_CHECKING:
9+
import httpretty
10+
11+
12+
@pytest.fixture(autouse=True)
13+
def disable_httpretty(http: type[httpretty.httpretty]) -> None:
14+
http.disable()

0 commit comments

Comments
 (0)