fix(ci): declare entrypoints + fix testing release (#1642)

This commit is contained in:
Steven Palma
2025-08-01 12:04:34 +02:00
committed by GitHub
parent 945e1ff266
commit 91ed6097bc
10 changed files with 52 additions and 11 deletions

View File

@@ -501,6 +501,10 @@ def eval_main(cfg: EvalPipelineConfig):
logging.info("End of eval")
if __name__ == "__main__":
def main():
init_logging()
eval_main()
if __name__ == "__main__":
main()