Skip to content

Commit f943849

Browse files
Fix nightly CI (#1568)
* Fix nightly CI Signed-off-by: Tom Wildenhain <[email protected]> * Make nightly CI test Python3.9 Signed-off-by: Tom Wildenhain <[email protected]>
1 parent 6c417b4 commit f943849

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci_build/azure_pipelines/onnxruntime_nightly_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ stages:
4242
- template: 'templates/job_generator.yml'
4343
parameters:
4444
platforms: ['linux', 'windows']
45-
python_versions: [3.8']
46-
tf_versions: ['2.5.0rc1']
45+
python_versions: ['3.9']
46+
tf_versions: ['2.5.0']
4747
onnx_opsets: ['']
4848
onnx_backends: {onnxruntime: ['nightly']}
4949
job:

tests/test_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4042,7 +4042,7 @@ def func(x):
40424042
graph_validator=lambda g: check_op_count(g, "ThresholdedRelu", 1))
40434043

40444044
@check_tf_min_version("1.13")
4045-
@check_opset_min_version(8, "MaxPoolWithArgmax")
4045+
@check_opset_min_version(11, "MaxPoolWithArgmax")
40464046
def test_maxpoolwithargmax(self):
40474047
for p in get_maxpoolwithargmax_getdata():
40484048
_, padding, x_shape, ksize, strides = p
@@ -4066,7 +4066,7 @@ def func(x):
40664066
return tf.identity(mp[0], name=_TFOUTPUT), tf.identity(mp[1], name=_TFOUTPUT1)
40674067
self._run_test_case(func, [_OUTPUT, _OUTPUT1], {_INPUT: x_val})
40684068

4069-
@check_tf_min_version("1.13")
4069+
@check_tf_min_version("1.15")
40704070
@check_opset_min_version(11, "MaxPoolWithArgmax")
40714071
def test_maxpoolwithargmax_unknown_c(self):
40724072
padding = 'SAME'

0 commit comments

Comments
 (0)