You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/lib/sift_client/sift_types/test_report.py
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,6 @@
43
43
classTestStatus(Enum):
44
44
"""TestStatus enum."""
45
45
46
-
__test__=False
47
46
UNSPECIFIED=0
48
47
DRAFT=1
49
48
PASSED=2
@@ -57,7 +56,6 @@ class TestStatus(Enum):
57
56
classTestStepType(Enum):
58
57
"""TestStepType enum."""
59
58
60
-
__test__=False
61
59
UNSPECIFIED=0
62
60
SEQUENCE=1
63
61
GROUP=2
@@ -68,7 +66,6 @@ class TestStepType(Enum):
68
66
classTestMeasurementType(Enum):
69
67
"""TestMeasurementType enum."""
70
68
71
-
__test__=False
72
69
UNSPECIFIED=0
73
70
DOUBLE=1
74
71
STRING=3
@@ -79,7 +76,6 @@ class TestMeasurementType(Enum):
79
76
classTestStepBase(ModelCreateUpdateBase):
80
77
"""Base model for TestStepUpdate and TestStepCreate. Contains shared fields for all test steps. Update and create models differ mostly in what fields are required vs optional."""
"""Base model for TestMeasurementUpdate and TestMeasurementCreate. Contains shared fields for all test measurements. Update and create models differ mostly in what fields are required vs optional."""
"""TestMeasurement model representing a measurement in a test."""
332
327
333
-
__test__=False
334
328
measurement_type: TestMeasurementType
335
329
name: str
336
330
test_step_id: str
@@ -432,7 +426,6 @@ def update(
432
426
classTestReportBase(ModelCreateUpdateBase):
433
427
"""Base model for TestReportUpdate and TestReportCreate. Contains shared fields for all test reports. Update and create models differ mostly in what fields are required vs optional."""
0 commit comments