@@ -14,10 +14,10 @@ jobs:
1414 vmImage : ' ubuntu-latest'
1515 strategy :
1616 matrix :
17- Python39-1101-RT181-xgb11 :
17+ Python39-1101-RT190 :
1818 python.version : ' 3.9'
1919 ONNX_PATH : onnx==1.10.1 # '-i https://test.pypi.org/simple/ onnx==1.9.101'
20- ONNXRT_PATH : onnxruntime==1.8.1
20+ ONNXRT_PATH : onnxruntime==1.9.0
2121 COREML_PATH :
git+https://github.com/apple/[email protected] 2222 xgboost.version : ' >=1.2'
2323 Python39-190-RT180-xgb11 :
@@ -105,8 +105,9 @@ jobs:
105105
106106 - script : |
107107 export PYTHONPATH=.
108- python -c "import onnxconverter_common;print(onnxconverter_common.__version__)"
109- python -c "import onnxruntime;print(onnxruntime.__version__)"
108+ python -c "import onnxruntime;print('onnx:',onnx.__version__)"
109+ python -c "import onnxconverter_common;print('cc:',onnxconverter_common.__version__)"
110+ python -c "import onnxruntime;print('ort:',onnxruntime.__version__)"
110111 displayName: 'version'
111112
112113 - script : |
@@ -119,11 +120,6 @@ jobs:
119120 pytest tests/catboost --durations=0
120121 displayName: 'pytest - catboost'
121122
122- - script : |
123- export PYTHONPATH=.
124- pytest tests/coreml --durations=0
125- displayName: 'pytest - coreml'
126-
127123 - script : |
128124 export PYTHONPATH=.
129125 pytest tests/lightgbm --durations=0
@@ -165,6 +161,11 @@ jobs:
165161 pytest tests/hummingbirdml --durations=0
166162 displayName: 'pytest - hummingbirdml'
167163
164+ - script : |
165+ export PYTHONPATH=.
166+ pytest tests/coreml --durations=0
167+ displayName: 'pytest - coreml'
168+
168169 - task : PublishTestResults@2
169170 inputs :
170171 testResultsFiles : ' **/test-results.xml'
0 commit comments