File tree 1 file changed +0
-4
lines changed 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -152,16 +152,12 @@ def take_screenshot(endpoint,container_tag):
152
152
report_tests .append (['Screenshot ' + container_tag ,'PASS' ])
153
153
except (requests .Timeout , requests .ConnectionError , KeyError ) as e :
154
154
report_tests .append (['Screenshot ' + container_tag ,'FAIL CONNECTION ERROR' ])
155
- mark_fail ()
156
155
except ErrorInResponseException as error :
157
156
report_tests .append (['Screenshot ' + container_tag ,'FAIL SERVER ERROR' ])
158
- mark_fail ()
159
157
except TimeoutException as error :
160
158
report_tests .append (['Screenshot ' + container_tag ,'FAIL TIMEOUT' ])
161
- mark_fail ()
162
159
except WebDriverException as error :
163
160
report_tests .append (['Screenshot ' + container_tag ,'FAIL UNKNOWN' ])
164
- mark_fail ()
165
161
166
162
# Main container test logic
167
163
def container_test (tag ):
You can’t perform that action at this time.
0 commit comments