-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2d6f2b
commit 52fc4a8
Showing
7 changed files
with
375 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,11 @@ authors = ["Arseny Neustroev <[email protected]>"] | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.12" | ||
port_ocean = { version = "^0.16.0", extras = ["cli"] } | ||
port_ocean = {version = "^0.17.2", extras = ["cli"]} | ||
httpx = "^0.27.0" | ||
loguru = "^0.7.3" | ||
pytest = "^8.3.4" | ||
pytest-httpx = ">=0.30.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
# Uncomment this if you want to debug the ocean core together with your integration | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
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: | ||
# This allows us to re-requestd the same mocked endpoint several times | ||
item.add_marker(pytest.mark.httpx_mock(can_send_already_matched_responses=True)) | ||
|
||
|
||
# ruff: noqa |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.