Skip to main content

List Test Sets

coval test-sets list [OPTIONS]
OptionTypeDefaultDescription
--filterstringFilter expression
--page-sizenumber50Results per page
--order-bystringSort order
Output columns: ID, NAME, TYPE, CASES, CREATED
coval test-sets list

Get Test Set

coval test-sets get <test_set_id>
ArgumentTypeRequiredDescription
test_set_idstringYesThe test set ID
coval test-sets get ts_abc123

Create Test Set

coval test-sets create [OPTIONS]
OptionTypeRequiredDescription
--namestringYesTest set name
--slugstringNoURL-friendly identifier (auto-generated if omitted)
--descriptionstringNoDescription of the test set
--typestringNoTest set type: DEFAULT, SCENARIO, TRANSCRIPT, or WORKFLOW
# Create a basic test set
coval test-sets create --name "Customer Support Scenarios"

# Create with all options
coval test-sets create \
  --name "Billing Scenarios" \
  --slug "billing-scenarios" \
  --description "Test cases for billing-related inquiries" \
  --type SCENARIO

Update Test Set

coval test-sets update <test_set_id> [OPTIONS]
ArgumentTypeRequiredDescription
test_set_idstringYesThe test set ID to update
OptionTypeDescription
--namestringNew name
--slugstringNew slug
--descriptionstringNew description
coval test-sets update ts_abc123 --name "Updated Name"

Delete Test Set

coval test-sets delete <test_set_id>
ArgumentTypeRequiredDescription
test_set_idstringYesThe test set ID to delete