@@ -216,7 +216,7 @@ def test(
216
216
branch : Union [str , None ] = typer .Option (
217
217
None , help = "Branch to test (branch MUST be provided or use --reference)"
218
218
),
219
- backend : str = typer .Option ("local " , help = "Backend to use for testing" ),
219
+ backend : str = typer .Option ("modal " , help = "Backend to use for testing" ),
220
220
timeout : int = typer .Option (1800 , help = "Timeout for tests in seconds" ),
221
221
num_cpus : int = typer .Option (1 , help = "Number of CPUs to use" ),
222
222
reference : Annotated [
@@ -251,9 +251,10 @@ def test(
251
251
branch = "reference"
252
252
assert branch is not None , "branch is not specified"
253
253
254
- typer .echo (f"Running tests for repository: { repo_or_repo_path } " )
255
- typer .echo (f"Branch: { branch } " )
256
- typer .echo (f"Test IDs: { test_ids } " )
254
+ if verbose == 2 :
255
+ typer .echo (f"Running tests for repository: { repo_or_repo_path } " )
256
+ typer .echo (f"Branch: { branch } " )
257
+ typer .echo (f"Test IDs: { test_ids } " )
257
258
258
259
commit0 .harness .run_pytest_ids .main (
259
260
commit0_config ["dataset_name" ],
@@ -274,7 +275,7 @@ def evaluate(
274
275
branch : Union [str , None ] = typer .Option (
275
276
None , help = "Branch to evaluate (branch MUST be provided or use --reference)"
276
277
),
277
- backend : str = typer .Option ("local " , help = "Backend to use for evaluation" ),
278
+ backend : str = typer .Option ("modal " , help = "Backend to use for evaluation" ),
278
279
timeout : int = typer .Option (1800 , help = "Timeout for evaluation in seconds" ),
279
280
num_cpus : int = typer .Option (1 , help = "Number of CPUs to use" ),
280
281
num_workers : int = typer .Option (8 , help = "Number of workers to use" ),
0 commit comments