Skip to content

Expose tests total count in PipelineEntity

Part of #223134 (closed)

What does this MR do?

This MR exposes a new attribute in our PipelineEntity.

It includes the following items:

  • Exposes tests_total_count attribute at the Pipeline level

This attribute would be used to display the number of total tests ran for a given pipeline as you can see below 👇

Pipeline___GitLab.org___GitLab___GitLab_2020-06-22_16-29-55

Why are we doing this?

Currently our badge counter is filled in by an async request to another endpoint that runs in parallel which needs to load and parse all reports taking approximately ~1min for gitlab.com. Since our JUnit counter data is now being stored in a database we can now expose it at the pipeline level and improve the ~performance of our JUnit feature.

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team
Edited by Robert Speicher

Merge request reports