Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HH-205210 add passthrow_hosts for FrontikTestBase #678

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions frontik/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,15 @@ def _setup_client_server(
self.http_client = app_client

@pytest.fixture(autouse=True)
def setup_mock_client(self):
with aioresponses(passthrough=['http://127.0.0.1']) as mock_client:
def setup_mock_client(self, passthrow_hosts):
with aioresponses(passthrough=passthrow_hosts) as mock_client:
self.mock_client = mock_client
yield self.mock_client

@pytest.fixture()
def passthrow_hosts(self):
return ['http://127.0.0.1', 'http://localhost']

async def fetch(
self,
path: str,
Expand Down
Loading