Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-08 06:07:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-08 06:07:05 +0300
commitefd6f06bfa01dc58f5b5dd704fde890539d8000b (patch)
tree050d6d5ab863b9416b97a90b5e4f4a7e53f40c58 /spec/fixtures
parentfb97e39150dcaf7ec2b2a070ff4b39c0551f14a2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/job/test_report_summary.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/job/test_report_summary.json b/spec/fixtures/api/schemas/job/test_report_summary.json
new file mode 100644
index 00000000000..056a02854d4
--- /dev/null
+++ b/spec/fixtures/api/schemas/job/test_report_summary.json
@@ -0,0 +1,34 @@
+{
+ "type": "object",
+ "properties": {
+ "total": {
+ "type": "object",
+ "properties": {
+ "time": { "type": "number" },
+ "count": { "type": "number" },
+ "success": { "type": "number" },
+ "failed": { "type": "number" },
+ "skipped": { "type": "number" },
+ "error": { "type": "number" },
+ "suite_error": { "type": ["string", "null"] }
+ }
+ },
+ "test_suites": {
+ "type": "array",
+ "items": {
+ "name": { "type": "string" },
+ "total_time": { "type": "number" },
+ "total_count": { "type": "number" },
+ "success_count": { "type": "number" },
+ "failed_count": { "type": "number" },
+ "skipped_count": { "type": "number" },
+ "error_count": { "type": "number" },
+ "build_ids": {
+ "type": "array",
+ "items": { "type": "number" }
+ },
+ "suite_error": { "type": ["string", "null"] }
+ }
+ }
+ }
+}