fix(scripts): 修正报告保存路径默认值
- 将报告保存路径前缀默认值由 "report" 修改为 "results/report" - 确保报告文件默认保存在更合适的目录结构中
This commit is contained in:
@@ -40,7 +40,7 @@ def main():
|
|||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--save-path",
|
"--save-path",
|
||||||
type=str,
|
type=str,
|
||||||
default="report",
|
default="results/report",
|
||||||
help="报告保存路径前缀",
|
help="报告保存路径前缀",
|
||||||
)
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|||||||
Reference in New Issue
Block a user