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.
1 parent 292f355 commit 9701bf5Copy full SHA for 9701bf5
tests/utils/test_utils.py
@@ -71,7 +71,9 @@ def test_set_denotation(self):
71
def test_evaluate_condition(self):
72
if not is_backend_enabled("onnxruntime"):
73
return
74
- value = [evaluate_condition("onnxruntime", "StrictVersion(onnxruntime.__version__) <= StrictVersion('0.%d.3')" % i) for i in range(0, 5)]
+ value = [
75
+ evaluate_condition("onnxruntime", "StrictVersion(onnxruntime.__version__) <= StrictVersion('0.%d.3')" % i)
76
+ for i in (1, 9999)]
77
self.assertNotEqual(min(value), max(value))
78
79
def test_optimizer(self):
0 commit comments