File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,16 @@ jobs:
18
18
strategy :
19
19
fail-fast : false
20
20
matrix :
21
+ tf_version : ['2.9.0', '2.15.0']
22
+ python_version : ['3.9']
21
23
opset_version : ['18', '15']
22
24
ort_version : ['1.16.3']
23
25
onnx_version : ['1.16.1']
24
26
include :
25
27
- tf_version : ' 2.9.0'
26
28
python_version : ' 3.8'
27
29
- tf_version : ' 2.15.0'
28
- python_version : ' 3.9 '
30
+ python_version : ' 3.10 '
29
31
- tf_version : ' 1.15.5'
30
32
python_version : ' 3.7'
31
33
os : ' ubuntu-latest'
Original file line number Diff line number Diff line change @@ -15,24 +15,29 @@ concurrency:
15
15
16
16
jobs :
17
17
run_tests :
18
+ name : Test (${{ matrix.python_version }}-${{ matrix.tf_version }}-${{ matrix.opset_version }}-${{ matrix.os }})
18
19
strategy :
19
20
fail-fast : false
20
21
matrix :
21
22
os : ['ubuntu-latest', 'windows-2022']
23
+ tf_version : ['2.9.0', '2.15.0']
24
+ python_version : ['3.9']
22
25
opset_version : ['18', '15']
23
26
ort_version : ['1.16.3']
24
27
onnx_version : ['1.16.1']
28
+ skip_tflite : ['False']
25
29
include :
26
30
- tf_version : ' 2.9.0'
27
31
python_version : ' 3.8'
28
32
- tf_version : ' 2.15.0'
29
- python_version : ' 3.9 '
33
+ python_version : ' 3.10 '
30
34
- tf_version : ' 1.15.5'
31
35
python_version : ' 3.7'
32
36
os : ' ubuntu-latest'
33
37
opset_version : ' 15'
34
38
ort_version : ' 1.14.1'
35
39
onnx_version : ' 1.14.1'
40
+ skip_tflite : ' True'
36
41
runs-on : ${{ matrix.os }}
37
42
38
43
steps :
63
68
run : |
64
69
export TF2ONNX_TEST_BACKEND=onnxruntime
65
70
export TF2ONNX_TEST_OPSET=${{ matrix.opset_version }}
66
- export TF2ONNX_SKIP_TFLITE_TESTS=False
71
+ export TF2ONNX_SKIP_TFLITE_TESTS=${{ matrix.skip_tflite }}
67
72
export TF2ONNX_SKIP_TFJS_TESTS=True
68
73
export TF2ONNX_SKIP_TF_TESTS=False
69
74
python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append --junitxml=junit/test-results.xml
74
79
run : |
75
80
set TF2ONNX_TEST_BACKEND=onnxruntime
76
81
set TF2ONNX_TEST_OPSET=${{ matrix.opset_version }}
77
- set TF2ONNX_SKIP_TFLITE_TESTS=False
82
+ set TF2ONNX_SKIP_TFLITE_TESTS=${{ matrix.skip_tflite }}
78
83
set TF2ONNX_SKIP_TFJS_TESTS=True
79
84
set TF2ONNX_SKIP_TF_TESTS=False
80
85
python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append --junitxml=junit/test-results.xml
You can’t perform that action at this time.
0 commit comments