Artifex/tools/capabilities.py

14 lines
305 B
Python
Raw Permalink Normal View History

2026-08-15 13:50:24 +07:00
from __future__ import annotations
from enum import StrEnum
class Capability(StrEnum):
READ_REPOSITORY = "read_repository"
WRITE_WORKTREE = "write_worktree"
RUN_TESTS = "run_tests"
CREATE_BRANCH = "create_branch"
COMMIT_CHANGES = "commit_changes"
BROWSER_TEST = "browser_test"