File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -205,12 +205,19 @@ def playwright(
205205 is_flag = True ,
206206 help = "Skip TTS even if OPENAI_API_KEY is set." ,
207207)
208+ @click .option (
209+ "--grep" ,
210+ "grep_arg" ,
211+ default = None ,
212+ help = "Playwright test title filter when --manifest is a .ts/.tsx spec (or overrides YAML)." ,
213+ )
208214@click .pass_context
209215def demo_function (
210216 ctx : click .Context ,
211217 manifest_arg : str ,
212218 output_dir_arg : str | None ,
213219 output_dir_legacy : str | None ,
220+ grep_arg : str | None ,
214221 cache_dir_arg : str | None ,
215222 no_narration : bool ,
216223) -> None :
@@ -224,6 +231,7 @@ def demo_function(
224231 code = run_cli (
225232 manifest_arg = manifest_arg ,
226233 output_dir_arg = out ,
234+ grep = grep_arg ,
227235 cache_dir_arg = cache_dir_arg ,
228236 no_narration = no_narration ,
229237 )
You can’t perform that action at this time.
0 commit comments