We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd4d11 commit 13c1f1dCopy full SHA for 13c1f1d
tests/smoke/test_smoke.py
@@ -61,8 +61,8 @@ def run_promptfoo(
61
timeout=120, # Increased timeout for npx fallback (first npx call downloads promptfoo)
62
)
63
64
- stdout = result.stdout
65
- stderr = result.stderr
+ stdout = result.stdout or ""
+ stderr = result.stderr or ""
66
exit_code = result.returncode
67
68
if not expect_error and exit_code != 0:
0 commit comments