We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4eee40d + 7e7711f commit e0ad620Copy full SHA for e0ad620
backends/openvino/tests/test_runner.py
@@ -1,6 +1,8 @@
1
import argparse
2
import unittest
3
4
+import nncf.torch
5
+
6
7
class OpenvinoTestSuite(unittest.TestSuite):
8
@@ -66,7 +68,8 @@ def parse_arguments():
66
68
# Discover all existing op tests in "ops" folder
67
69
suite = loader.discover(test_params["test_type"], pattern=test_params["pattern"])
70
# Start running tests
- result = unittest.TextTestRunner().run(suite)
71
+ with nncf.torch.disable_patching():
72
+ result = unittest.TextTestRunner().run(suite)
73
if result.wasSuccessful():
74
print("OpenVINO backend tests completed successfully")
75
else:
0 commit comments