From ae77fa23b5cf395743317e3744edff7af405c6f2 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 27 Feb 2025 01:26:21 -0500 Subject: [PATCH] fix: default path for tests --- joj3_config_generator/models/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joj3_config_generator/models/task.py b/joj3_config_generator/models/task.py index 6672d02..a09a069 100644 --- a/joj3_config_generator/models/task.py +++ b/joj3_config_generator/models/task.py @@ -34,7 +34,7 @@ class Release(BaseModel): class Config(BaseModel): root: Path = Path(".") - path: Path = Path("conf.toml") + path: Path = Path("task.toml") task: str # Task name (e.g., hw3 ex5) release: Release # Release configuration stages: List[Stage] # list of stage configurations