Skip to content
Open
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
9 changes: 9 additions & 0 deletions consistency_audit_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ def parse_args() -> argparse.Namespace:
action="store_true",
help="Ignore duplicate consecutive states for the same ID.",
)
parser.add_argument(
"--allowed-order",
required=True,
help=(
"Allowed state order, e.g. 'NEW>RUNNING>DONE'. "
"States not present here are treated as 'unknown_state'. "
"Use '>' as a strict ordering separator."
),
)

parser.add_argument(
"--json",
Expand Down