docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/toolresults_v1beta3.testCases.html b/docs/dyn/toolresults_v1beta3.testCases.html
index 0f370a4..993c043 100644
--- a/docs/dyn/toolresults_v1beta3.testCases.html
+++ b/docs/dyn/toolresults_v1beta3.testCases.html
@@ -121,41 +121,6 @@
An object of the form:
{
- "status": "A String", # The status of the test case.
- #
- # Required.
- "elapsedTime": { # # The elapsed run time of the test case.
- #
- # Required.
- # A Duration represents a signed, fixed-length span of time represented
- # as a count of seconds and fractions of seconds at nanosecond
- # resolution. It is independent of any calendar and concepts like "day"
- # or "month". It is related to Timestamp in that the difference between
- # two Timestamp values is a Duration and it can be added or subtracted
- # from a Timestamp. Range is approximately +-10,000 years.
- "nanos": 42, # Signed fractions of a second at nanosecond resolution of the span
- # of time. Durations less than one second are represented with a 0
- # `seconds` field and a positive or negative `nanos` field. For durations
- # of one second or more, a non-zero value for the `nanos` field must be
- # of the same sign as the `seconds` field. Must be from -999,999,999
- # to +999,999,999 inclusive.
- "seconds": "A String", # Signed seconds of the span of time. Must be from -315,576,000,000
- # to +315,576,000,000 inclusive. Note: these bounds are computed from:
- # 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
- },
- "testCaseId": "A String", # A unique identifier within a Step for this Test Case.
- "stackTraces": [ # The stack trace details if the test case failed or encountered an error.
- #
- # The maximum size of the stack traces is 100KiB, beyond which the stack
- # track will be truncated.
- #
- # Zero if the test case passed.
- { # A stacktrace.
- "exception": "A String", # The stack trace message.
- #
- # Required
- },
- ],
"endTime": { # A Timestamp represents a point in time independent of any time zone or local # The end time of the test case.
# calendar, encoded as a count of seconds and fractions of seconds at
# nanosecond resolution. The count is relative to an epoch at UTC midnight on
@@ -180,10 +145,41 @@
"skippedMessage": "A String", # Why the test case was skipped.
#
# Present only for skipped test case
+ "testCaseReference": { # A reference to a test case. # Test case reference, e.g. name, class name and test suite name.
+ #
+ # Required.
+ #
+ # Test case references are canonically ordered lexicographically by these three
+ # factors:
+ # * First, by test_suite_name.
+ # * Second, by class_name.
+ # * Third, by name.
+ "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
+ "className": "A String", # The name of the class.
+ "name": "A String", # The name of the test case.
+ #
+ # Required.
+ },
"toolOutputs": [ # References to opaque files of any format output by the tool execution.
#
# @OutputOnly
{ # A reference to a ToolExecution output file.
+ "testCase": { # A reference to a test case. # The test case to which this output file belongs.
+ #
+ # - In response: present if set by create/update request
+ # - In create/update request: optional
+ #
+ # Test case references are canonically ordered lexicographically by these three
+ # factors:
+ # * First, by test_suite_name.
+ # * Second, by class_name.
+ # * Third, by name.
+ "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
+ "className": "A String", # The name of the class.
+ "name": "A String", # The name of the test case.
+ #
+ # Required.
+ },
"creationTime": { # A Timestamp represents a point in time independent of any time zone or local # The creation time of the file.
#
# - In response: present if set by create/update request
@@ -225,39 +221,8 @@
# - In response: always set
# - In create/update request: always set
},
- "testCase": { # A reference to a test case. # The test case to which this output file belongs.
- #
- # - In response: present if set by create/update request
- # - In create/update request: optional
- #
- # Test case references are canonically ordered lexicographically by these three
- # factors:
- # * First, by test_suite_name.
- # * Second, by class_name.
- # * Third, by name.
- "name": "A String", # The name of the test case.
- #
- # Required.
- "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
- "className": "A String", # The name of the class.
- },
},
],
- "testCaseReference": { # A reference to a test case. # Test case reference, e.g. name, class name and test suite name.
- #
- # Required.
- #
- # Test case references are canonically ordered lexicographically by these three
- # factors:
- # * First, by test_suite_name.
- # * Second, by class_name.
- # * Third, by name.
- "name": "A String", # The name of the test case.
- #
- # Required.
- "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
- "className": "A String", # The name of the class.
- },
"startTime": { # A Timestamp represents a point in time independent of any time zone or local # The start time of the test case.
# calendar, encoded as a count of seconds and fractions of seconds at
# nanosecond resolution. The count is relative to an epoch at UTC midnight on
@@ -279,6 +244,41 @@
# 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
# 9999-12-31T23:59:59Z inclusive.
},
+ "status": "A String", # The status of the test case.
+ #
+ # Required.
+ "elapsedTime": { # # The elapsed run time of the test case.
+ #
+ # Required.
+ # A Duration represents a signed, fixed-length span of time represented
+ # as a count of seconds and fractions of seconds at nanosecond
+ # resolution. It is independent of any calendar and concepts like "day"
+ # or "month". It is related to Timestamp in that the difference between
+ # two Timestamp values is a Duration and it can be added or subtracted
+ # from a Timestamp. Range is approximately +-10,000 years.
+ "seconds": "A String", # Signed seconds of the span of time. Must be from -315,576,000,000
+ # to +315,576,000,000 inclusive. Note: these bounds are computed from:
+ # 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
+ "nanos": 42, # Signed fractions of a second at nanosecond resolution of the span
+ # of time. Durations less than one second are represented with a 0
+ # `seconds` field and a positive or negative `nanos` field. For durations
+ # of one second or more, a non-zero value for the `nanos` field must be
+ # of the same sign as the `seconds` field. Must be from -999,999,999
+ # to +999,999,999 inclusive.
+ },
+ "testCaseId": "A String", # A unique identifier within a Step for this Test Case.
+ "stackTraces": [ # The stack trace details if the test case failed or encountered an error.
+ #
+ # The maximum size of the stack traces is 100KiB, beyond which the stack
+ # track will be truncated.
+ #
+ # Zero if the test case passed.
+ { # A stacktrace.
+ "exception": "A String", # The stack trace message.
+ #
+ # Required
+ },
+ ],
}</pre>
</div>
@@ -328,41 +328,6 @@
"nextPageToken": "A String",
"testCases": [ # List of test cases.
{
- "status": "A String", # The status of the test case.
- #
- # Required.
- "elapsedTime": { # # The elapsed run time of the test case.
- #
- # Required.
- # A Duration represents a signed, fixed-length span of time represented
- # as a count of seconds and fractions of seconds at nanosecond
- # resolution. It is independent of any calendar and concepts like "day"
- # or "month". It is related to Timestamp in that the difference between
- # two Timestamp values is a Duration and it can be added or subtracted
- # from a Timestamp. Range is approximately +-10,000 years.
- "nanos": 42, # Signed fractions of a second at nanosecond resolution of the span
- # of time. Durations less than one second are represented with a 0
- # `seconds` field and a positive or negative `nanos` field. For durations
- # of one second or more, a non-zero value for the `nanos` field must be
- # of the same sign as the `seconds` field. Must be from -999,999,999
- # to +999,999,999 inclusive.
- "seconds": "A String", # Signed seconds of the span of time. Must be from -315,576,000,000
- # to +315,576,000,000 inclusive. Note: these bounds are computed from:
- # 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
- },
- "testCaseId": "A String", # A unique identifier within a Step for this Test Case.
- "stackTraces": [ # The stack trace details if the test case failed or encountered an error.
- #
- # The maximum size of the stack traces is 100KiB, beyond which the stack
- # track will be truncated.
- #
- # Zero if the test case passed.
- { # A stacktrace.
- "exception": "A String", # The stack trace message.
- #
- # Required
- },
- ],
"endTime": { # A Timestamp represents a point in time independent of any time zone or local # The end time of the test case.
# calendar, encoded as a count of seconds and fractions of seconds at
# nanosecond resolution. The count is relative to an epoch at UTC midnight on
@@ -387,10 +352,41 @@
"skippedMessage": "A String", # Why the test case was skipped.
#
# Present only for skipped test case
+ "testCaseReference": { # A reference to a test case. # Test case reference, e.g. name, class name and test suite name.
+ #
+ # Required.
+ #
+ # Test case references are canonically ordered lexicographically by these three
+ # factors:
+ # * First, by test_suite_name.
+ # * Second, by class_name.
+ # * Third, by name.
+ "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
+ "className": "A String", # The name of the class.
+ "name": "A String", # The name of the test case.
+ #
+ # Required.
+ },
"toolOutputs": [ # References to opaque files of any format output by the tool execution.
#
# @OutputOnly
{ # A reference to a ToolExecution output file.
+ "testCase": { # A reference to a test case. # The test case to which this output file belongs.
+ #
+ # - In response: present if set by create/update request
+ # - In create/update request: optional
+ #
+ # Test case references are canonically ordered lexicographically by these three
+ # factors:
+ # * First, by test_suite_name.
+ # * Second, by class_name.
+ # * Third, by name.
+ "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
+ "className": "A String", # The name of the class.
+ "name": "A String", # The name of the test case.
+ #
+ # Required.
+ },
"creationTime": { # A Timestamp represents a point in time independent of any time zone or local # The creation time of the file.
#
# - In response: present if set by create/update request
@@ -432,39 +428,8 @@
# - In response: always set
# - In create/update request: always set
},
- "testCase": { # A reference to a test case. # The test case to which this output file belongs.
- #
- # - In response: present if set by create/update request
- # - In create/update request: optional
- #
- # Test case references are canonically ordered lexicographically by these three
- # factors:
- # * First, by test_suite_name.
- # * Second, by class_name.
- # * Third, by name.
- "name": "A String", # The name of the test case.
- #
- # Required.
- "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
- "className": "A String", # The name of the class.
- },
},
],
- "testCaseReference": { # A reference to a test case. # Test case reference, e.g. name, class name and test suite name.
- #
- # Required.
- #
- # Test case references are canonically ordered lexicographically by these three
- # factors:
- # * First, by test_suite_name.
- # * Second, by class_name.
- # * Third, by name.
- "name": "A String", # The name of the test case.
- #
- # Required.
- "testSuiteName": "A String", # The name of the test suite to which this test case belongs.
- "className": "A String", # The name of the class.
- },
"startTime": { # A Timestamp represents a point in time independent of any time zone or local # The start time of the test case.
# calendar, encoded as a count of seconds and fractions of seconds at
# nanosecond resolution. The count is relative to an epoch at UTC midnight on
@@ -486,6 +451,41 @@
# 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
# 9999-12-31T23:59:59Z inclusive.
},
+ "status": "A String", # The status of the test case.
+ #
+ # Required.
+ "elapsedTime": { # # The elapsed run time of the test case.
+ #
+ # Required.
+ # A Duration represents a signed, fixed-length span of time represented
+ # as a count of seconds and fractions of seconds at nanosecond
+ # resolution. It is independent of any calendar and concepts like "day"
+ # or "month". It is related to Timestamp in that the difference between
+ # two Timestamp values is a Duration and it can be added or subtracted
+ # from a Timestamp. Range is approximately +-10,000 years.
+ "seconds": "A String", # Signed seconds of the span of time. Must be from -315,576,000,000
+ # to +315,576,000,000 inclusive. Note: these bounds are computed from:
+ # 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
+ "nanos": 42, # Signed fractions of a second at nanosecond resolution of the span
+ # of time. Durations less than one second are represented with a 0
+ # `seconds` field and a positive or negative `nanos` field. For durations
+ # of one second or more, a non-zero value for the `nanos` field must be
+ # of the same sign as the `seconds` field. Must be from -999,999,999
+ # to +999,999,999 inclusive.
+ },
+ "testCaseId": "A String", # A unique identifier within a Step for this Test Case.
+ "stackTraces": [ # The stack trace details if the test case failed or encountered an error.
+ #
+ # The maximum size of the stack traces is 100KiB, beyond which the stack
+ # track will be truncated.
+ #
+ # Zero if the test case passed.
+ { # A stacktrace.
+ "exception": "A String", # The stack trace message.
+ #
+ # Required
+ },
+ ],
},
],
}</pre>