Compare commits

...

2 Commits

Author SHA1 Message Date
f4248a59a5
chore: result-detail.cpu alias
All checks were successful
build / build (push) Successful in 2m31s
build / trigger-build-image (push) Successful in 9s
2025-06-26 07:36:40 -04:00
8f5b23555c
chore: run time -> clock time 2025-06-26 07:36:09 -04:00

View File

@ -27,9 +27,9 @@ from joj3_config_generator.models.repo import Groups
class ParserResultDetail(BaseModel):
cpu_time: bool = Field(
True, validation_alias=AliasChoices("cpu-time", "cpu_time")
True, validation_alias=AliasChoices("cpu-time", "cpu_time", "cpu")
) # Display CPU time
time: bool = True # Display run time
time: bool = True # Display clock time
mem: bool = True # Display memory usage
stdout: bool = False # Display stdout messages
stderr: bool = False # Display stderr messages