We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e69e3 commit f424f21Copy full SHA for f424f21
integration-tests/tests/fixtures/integration_test_logs.py
@@ -58,10 +58,15 @@ def _download_and_extract_dataset(
58
logger.info("Test logs `%s` are up-to-date. Skipping download.", name)
59
return integration_test_logs
60
61
+ curl_bin = shutil.which("curl")
62
+ if curl_bin is None:
63
+ err_msg = "curl executable not found"
64
+ raise RuntimeError(err_msg)
65
+
66
try:
67
# fmt: off
68
curl_cmds = [
- "curl",
69
+ curl_bin,
70
"--fail",
71
"--location",
72
"--output", str(integration_test_logs.tarball_path),
0 commit comments