Skip to content

Commit

Permalink
tests/integration: disable httpretty
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Mar 17, 2024
1 parent ff3f74c commit 1b0caf5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from __future__ import annotations

from typing import TYPE_CHECKING

import pytest


if TYPE_CHECKING:
import httpretty


@pytest.fixture(autouse=True)
def disable_httpretty(http: type[httpretty.httpretty]) -> None:
http.disable()

0 comments on commit 1b0caf5

Please sign in to comment.