Skip to content

Commit

Permalink
[SQUASH] Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzaadi committed Oct 31, 2024
1 parent 791186e commit e8d20f0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 23 deletions.
46 changes: 23 additions & 23 deletions integrations/fake-integration/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions integrations/fake-integration/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import pytest

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

# ruff: noqa
from port_ocean.tests.helpers.fixtures import (
get_mocked_ocean_app,
Expand Down
1 change: 1 addition & 0 deletions integrations/fake-integration/tests/test_sync.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import re
from typing import Any
from unittest.mock import AsyncMock

Expand Down

0 comments on commit e8d20f0

Please sign in to comment.