Skip to content

Commit

Permalink
Alter fake integration (change in pytest-httpx)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzaadi committed Nov 7, 2024
1 parent 42505e4 commit 40c1b00
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion integrations/fake-integration/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# ruff: noqa
from typing import Any

from port_ocean.tests.helpers.fixtures import (
get_mocked_ocean_app,
get_mock_ocean_resource_configs,
)
import pytest


def pytest_collection_modifyitems(session: Any, config: Any, items: Any) -> None:
for item in items:
item.add_marker(pytest.mark.httpx_mock(can_send_already_matched_responses=True))


# ruff: noqa

0 comments on commit 40c1b00

Please sign in to comment.