Module Values.ReportSource

Information about the results from running a series of test cases during the run of a build project. The test cases are specified in the buildspec for the build project using one or more paths to the test case files. You can specify any type of tests you want, such as unit tests, integration tests, and functional tests.

Sourcetype nonrec t = {
  1. arn : NonEmptyString.t option;
    (*

    The ARN of the report run.

    *)
  2. type_ : ReportType.t option;
    (*

    The type of the report that was run. CODE_COVERAGE A code coverage report. TEST A test report.

    *)
  3. name : String_.t option;
    (*

    The name of the report that was run.

    *)
  4. reportGroupArn : NonEmptyString.t option;
    (*

    The ARN of the report group associated with this report.

    *)
  5. executionId : String_.t option;
    (*

    The ARN of the build run that generated this report.

    *)
  6. status : ReportStatusType.t option;
    (*

    The status of this report.

    *)
  7. created : Timestamp.t option;
    (*

    The date and time this report run occurred.

    *)
  8. expired : Timestamp.t option;
    (*

    The date and time a report expires. A report expires 30 days after it is created. An expired report is not available to view in CodeBuild.

    *)
  9. exportConfig : ReportExportConfig.t option;
    (*

    Information about where the raw data used to generate this report was exported.

    *)
  10. truncated : WrapperBoolean.t option;
    (*

    A boolean that specifies if this report run is truncated. The list of test cases is truncated after the maximum number of test cases is reached.

    *)
  11. testSummary : TestReportSummary.t option;
    (*

    A TestReportSummary object that contains information about this test report.

    *)
  12. codeCoverageSummary : CodeCoverageReportSummary.t option;
    (*

    A CodeCoverageReportSummary object that contains a code coverage summary for this report.

    *)
}
Sourceval make : ?arn:??? -> ?type_:??? -> ?name:??? -> ?reportGroupArn:??? -> ?executionId:??? -> ?status:??? -> ?created:??? -> ?expired:??? -> ?exportConfig:??? -> ?truncated:??? -> ?testSummary:??? -> ?codeCoverageSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Double of Percentage.t | `Enum of string | `Integer of WrapperInt.t | `Long of WrapperLong.t | `Map of ([> `String of String_.t ] * [> `Integer of WrapperInt.t ]) list | `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of NonEmptyString.t ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t