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

Fix: Recover lost fix for webbrowser.open mock #1052

Merged
merged 1 commit into from
Mar 14, 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
2 changes: 2 additions & 0 deletions tests/unit/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,7 @@ def test_remove_warehouse_not_exists(ws, caplog):


def test_repair_run(ws, mocker, any_prompt, mock_installation_with_jobs):
mocker.patch("webbrowser.open")
base = [
BaseRun(
job_clusters=None,
Expand Down Expand Up @@ -1214,6 +1215,7 @@ def test_fresh_install(ws, mock_installation):


def test_get_existing_installation_global(ws, mock_installation, mocker):
mocker.patch("webbrowser.open")
prompts = MockPrompts(
{
r".*PRO or SERVERLESS SQL warehouse.*": "1",
Expand Down
Loading