Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Hoyant-Su
/
ShellOps
like
0
Tasks:
Text Generation
Question Answering
Languages:
English
ArXiv:
arxiv:
2605.08013
Tags:
cli-agents
reinforcement-learning
filesystem
shell
verifiable-evaluation
License:
cc-by-4.0
Dataset card
Files
Files and versions
xet
Community
main
ShellOps
/
shellops
/
assets
/
ShellOps_070812d0ef
/
init
/
tests
/
test_incidents.py
Hoyant-Su
Update ShellOps dataset
ac9f14b
3 days ago
raw
Copy download link
history
blame
contribute
delete
251 Bytes
def
test_incident_creation
():
inc = Incident(ticket_id=
"T123"
, description=
"test"
)
assert
inc.ticket_id ==
"T123"
def
test_ticket_id_presence
():
inc = Incident(ticket_id=
"T456"
, description=
"another"
)
assert
hasattr
(inc,
"ticket_id"
)