Skip to content

Commit 50f78fd

Browse files
authored
[TESTS] Remove restart condition as it happens in nested exception (openvinotoolkit#27012)
### Details: - *Will restart any `RuntimeError` as the searching text in the exception class is not reliable enough* ### Tickets: - *CVS-151277*
1 parent ec466ac commit 50f78fd

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

tests/layer_tests/py_frontend_tests/test_torchvision_preprocessor.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@ def _infer_pipelines(test_input, preprocess_pipeline, input_channels=3):
3636
try:
3737
return _infer_pipelines_impl(test_input, preprocess_pipeline, input_channels)
3838
except RuntimeError as e:
39-
if "builtin cannot be used as a value" in str(e):
40-
# This is a potentially sporadic issue
41-
print(f"An error occurred: {e}. Retrying...")
42-
retries += 1
43-
else:
44-
raise
39+
# This is a potentially sporadic issue
40+
print(f"An error occurred: {e}. Retrying...")
41+
retries += 1
4542
else:
4643
print("Max retries reached. Function execution failed.")
4744

tests/layer_tests/pytorch_tests/pytorch_layer_test_class.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,9 @@ def _test(self, model, ref_net, kind, ie_device, precision, ir_version, infer_ti
7777
try:
7878
return self._test_impl(model, ref_net, kind, ie_device, precision, ir_version, infer_timeout, dynamic_shapes, **kwargs)
7979
except RuntimeError as e:
80-
if "builtin cannot be used as a value" in str(e):
81-
# This is a potentially sporadic issue
82-
print(f"An error occurred: {e}. Retrying...")
83-
retries += 1
84-
else:
85-
raise
80+
# This is a potentially sporadic issue
81+
print(f"An error occurred: {e}. Retrying...")
82+
retries += 1
8683
else:
8784
print("Max retries reached. Function execution failed.")
8885

0 commit comments

Comments
 (0)