smoke-test.json 877 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "Smoke Test Suite",
  3. "description": "Minimal single-test suite for quick validation",
  4. "version": "1.0.0",
  5. "agent": "openagent",
  6. "totalTests": 1,
  7. "estimatedRuntime": "30-60 seconds",
  8. "coverage": {
  9. "toolUsage": true
  10. },
  11. "tests": [
  12. {
  13. "id": 1,
  14. "name": "Tool Usage - Dedicated Tools",
  15. "path": "09-tool-usage/dedicated-tools-usage.yaml",
  16. "category": "tool-usage",
  17. "priority": "medium",
  18. "required": true,
  19. "estimatedTime": "30-60s",
  20. "description": "Validates agent uses proper tools (read/grep) instead of bash antipatterns"
  21. }
  22. ],
  23. "rationale": {
  24. "why1Test": "Single test for quick smoke testing and validation of the eval system",
  25. "useCases": [
  26. "Quick validation of eval framework",
  27. "Testing new model configurations",
  28. "Smoke test before running full suite"
  29. ]
  30. }
  31. }