Skip to content

Commit 11292c5

Browse files
Merge remote-tracking branch 'origin/main' into slack
2 parents 3a0dc2a + 16e8b86 commit 11292c5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/datacustomcode/token_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def _run_sf_command(args: list[str], description: str) -> dict:
108108
capture_output=True,
109109
text=True,
110110
check=True,
111-
timeout=30,
111+
timeout=120,
112112
)
113113
except FileNotFoundError as exc:
114114
raise RuntimeError(

tests/io/reader/test_sf_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_returns_token_and_instance_url(self, reader):
9999
capture_output=True,
100100
text=True,
101101
check=True,
102-
timeout=30,
102+
timeout=120,
103103
)
104104
mock_run.assert_any_call(
105105
[
@@ -114,7 +114,7 @@ def test_returns_token_and_instance_url(self, reader):
114114
capture_output=True,
115115
text=True,
116116
check=True,
117-
timeout=30,
117+
timeout=120,
118118
)
119119

120120
def test_file_not_found_raises_runtime_error(self, reader):

0 commit comments

Comments
 (0)