Skip to content
Merged
Show file tree
Hide file tree
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: 1 addition & 1 deletion src/datacustomcode/token_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _run_sf_command(args: list[str], description: str) -> dict:
capture_output=True,
text=True,
check=True,
timeout=30,
timeout=120,
)
except FileNotFoundError as exc:
raise RuntimeError(
Expand Down
4 changes: 2 additions & 2 deletions tests/io/reader/test_sf_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def test_returns_token_and_instance_url(self, reader):
capture_output=True,
text=True,
check=True,
timeout=30,
timeout=120,
)
mock_run.assert_any_call(
[
Expand All @@ -114,7 +114,7 @@ def test_returns_token_and_instance_url(self, reader):
capture_output=True,
text=True,
check=True,
timeout=30,
timeout=120,
)

def test_file_not_found_raises_runtime_error(self, reader):
Expand Down
Loading