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.
2 parents edaa443 + f3e2acd commit 1a9ee7fCopy full SHA for 1a9ee7f
codeflash/api/cfapi.py
@@ -203,6 +203,8 @@ def create_staging(
203
generated_original_test_source: str,
204
function_trace_id: str,
205
coverage_message: str,
206
+ replay_tests: str = "",
207
+ concolic_tests: str = "",
208
) -> Response:
209
"""Create a staging pull request, targeting the specified branch. (usually 'staging').
210
@@ -243,6 +245,8 @@ def create_staging(
243
245
"generatedTests": generated_original_test_source,
244
246
"traceId": function_trace_id,
247
"coverage_message": coverage_message,
248
+ "replayTests": replay_tests,
249
+ "concolicTests": concolic_tests,
250
}
251
252
return make_cfapi_request(endpoint="/create-staging", method="POST", payload=payload)
0 commit comments