We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 771bf4c commit aef0421Copy full SHA for aef0421
eval_protocol/pytest/plugin.py
@@ -133,6 +133,12 @@ def pytest_addoption(parser) -> None:
133
default=None,
134
help=("If set, use this base URL for remote rollout processing. Example: http://localhost:8000"),
135
)
136
+ group.addoption(
137
+ "--ep-no-persist-results-jsonl",
138
+ action="store_true",
139
+ default=False,
140
+ help=("Disable persisting results as jsonl files. Default: false (results are persisted by default)."),
141
+ )
142
143
144
def _normalize_max_rows(val: Optional[str]) -> Optional[str]:
0 commit comments