Skip to content

Commit ba6165f

Browse files
committed
Update tools list
1 parent e7f00e2 commit ba6165f

File tree

2 files changed

+57
-84
lines changed

2 files changed

+57
-84
lines changed

docs/tools/EXECUTION_TOOLS.md

Lines changed: 38 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -437,22 +437,27 @@ If there are more than 1000 tests, the results will be truncated. Use `lookup_b
437437
"testsSummary": {
438438
"type": "object",
439439
"required": [
440-
"passed",
441-
"failed",
442-
"skipped",
443440
"totalPassed",
444441
"totalFailed",
445-
"totalSkipped"
442+
"totalSkipped",
443+
"failed",
444+
"skipped"
446445
],
447446
"properties": {
448-
"passed": {
449-
"type": [
450-
"array",
451-
"null"
452-
],
453-
"items": {
454-
"type": "string"
455-
}
447+
"totalPassed": {
448+
"type": "integer",
449+
"minimum": -2147483648,
450+
"maximum": 2147483647
451+
},
452+
"totalFailed": {
453+
"type": "integer",
454+
"minimum": -2147483648,
455+
"maximum": 2147483647
456+
},
457+
"totalSkipped": {
458+
"type": "integer",
459+
"minimum": -2147483648,
460+
"maximum": 2147483647
456461
},
457462
"failed": {
458463
"type": [
@@ -472,23 +477,9 @@ If there are more than 1000 tests, the results will be truncated. Use `lookup_b
472477
"type": "string"
473478
}
474479
},
475-
"totalPassed": {
476-
"type": "integer",
477-
"minimum": -2147483648,
478-
"maximum": 2147483647
479-
},
480-
"totalFailed": {
481-
"type": "integer",
482-
"minimum": -2147483648,
483-
"maximum": 2147483647
484-
},
485-
"totalSkipped": {
486-
"type": "integer",
487-
"minimum": -2147483648,
488-
"maximum": 2147483647
489-
},
490480
"wasTruncated": {
491-
"type": "boolean"
481+
"type": "boolean",
482+
"description": "Whether the results were truncated. If true, use a lookup tool to get more detailed results."
492483
},
493484
"total": {
494485
"type": "integer",
@@ -838,22 +829,27 @@ If there are more than 1000 tests, the results will be truncated. Use `lookup_b
838829
"testsSummary": {
839830
"type": "object",
840831
"required": [
841-
"passed",
842-
"failed",
843-
"skipped",
844832
"totalPassed",
845833
"totalFailed",
846-
"totalSkipped"
834+
"totalSkipped",
835+
"failed",
836+
"skipped"
847837
],
848838
"properties": {
849-
"passed": {
850-
"type": [
851-
"array",
852-
"null"
853-
],
854-
"items": {
855-
"type": "string"
856-
}
839+
"totalPassed": {
840+
"type": "integer",
841+
"minimum": -2147483648,
842+
"maximum": 2147483647
843+
},
844+
"totalFailed": {
845+
"type": "integer",
846+
"minimum": -2147483648,
847+
"maximum": 2147483647
848+
},
849+
"totalSkipped": {
850+
"type": "integer",
851+
"minimum": -2147483648,
852+
"maximum": 2147483647
857853
},
858854
"failed": {
859855
"type": [
@@ -873,23 +869,9 @@ If there are more than 1000 tests, the results will be truncated. Use `lookup_b
873869
"type": "string"
874870
}
875871
},
876-
"totalPassed": {
877-
"type": "integer",
878-
"minimum": -2147483648,
879-
"maximum": 2147483647
880-
},
881-
"totalFailed": {
882-
"type": "integer",
883-
"minimum": -2147483648,
884-
"maximum": 2147483647
885-
},
886-
"totalSkipped": {
887-
"type": "integer",
888-
"minimum": -2147483648,
889-
"maximum": 2147483647
890-
},
891872
"wasTruncated": {
892-
"type": "boolean"
873+
"type": "boolean",
874+
"description": "Whether the results were truncated. If true, use a lookup tool to get more detailed results."
893875
},
894876
"total": {
895877
"type": "integer",

docs/tools/LOOKUP_TOOLS.md

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -498,14 +498,20 @@ For a given build, gets the summary of all test executions.
498498
```json
499499
{
500500
"properties": {
501-
"passed": {
502-
"type": [
503-
"array",
504-
"null"
505-
],
506-
"items": {
507-
"type": "string"
508-
}
501+
"totalPassed": {
502+
"type": "integer",
503+
"minimum": -2147483648,
504+
"maximum": 2147483647
505+
},
506+
"totalFailed": {
507+
"type": "integer",
508+
"minimum": -2147483648,
509+
"maximum": 2147483647
510+
},
511+
"totalSkipped": {
512+
"type": "integer",
513+
"minimum": -2147483648,
514+
"maximum": 2147483647
509515
},
510516
"failed": {
511517
"type": [
@@ -525,23 +531,9 @@ For a given build, gets the summary of all test executions.
525531
"type": "string"
526532
}
527533
},
528-
"totalPassed": {
529-
"type": "integer",
530-
"minimum": -2147483648,
531-
"maximum": 2147483647
532-
},
533-
"totalFailed": {
534-
"type": "integer",
535-
"minimum": -2147483648,
536-
"maximum": 2147483647
537-
},
538-
"totalSkipped": {
539-
"type": "integer",
540-
"minimum": -2147483648,
541-
"maximum": 2147483647
542-
},
543534
"wasTruncated": {
544-
"type": "boolean"
535+
"type": "boolean",
536+
"description": "Whether the results were truncated. If true, use a lookup tool to get more detailed results."
545537
},
546538
"total": {
547539
"type": "integer",
@@ -550,12 +542,11 @@ For a given build, gets the summary of all test executions.
550542
}
551543
},
552544
"required": [
553-
"passed",
554-
"failed",
555-
"skipped",
556545
"totalPassed",
557546
"totalFailed",
558-
"totalSkipped"
547+
"totalSkipped",
548+
"failed",
549+
"skipped"
559550
],
560551
"type": "object"
561552
}

0 commit comments

Comments
 (0)