Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cecli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1074,14 +1074,14 @@
if not args.test_cmd:
io.tool_error("No --test-cmd provided.")
return await graceful_exit(coder, 1)
await coder.commands.cmd_test(args.test_cmd)
await coder.commands.do_run("test", args.test_cmd)
if io.placeholder:

Check failure on line 1078 in cecli/main.py

View workflow job for this annotation

GitHub Actions / pre-commit

E999 IndentationError: unexpected indent
await coder.run(io.placeholder)
if args.commit:
if args.dry_run:
io.tool_output("Dry run enabled, skipping commit.")
else:
await coder.commands.cmd_commit()
await coder.commands.do_run("commit", "")
if args.lint or args.test or args.commit:
return await graceful_exit(coder)
if args.show_repo_map:
Expand Down Expand Up @@ -1275,4 +1275,4 @@

if __name__ == "__main__":
status = main()
sys.exit(status)
sys.exit(status)
Loading