Skip to content
Snippets Groups Projects
Commit f5440ed7 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix : missing aidge_onnx dependencies for coverage job

onnxruntime
required for MR aidge_onnx!75
parent 5f4a239c
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,11 @@ coverage:ubuntu_python:
- source venv/bin/activate
- which python
- python -m pip list
- python -m pip install numpy coverage requests unittest-xml-reporting pytest onnxruntime
- python -m pip install numpy coverage requests unittest-xml-reporting
- >
if [[ "$CI_PROJECT_NAME" == "aidge_onnx" ]]; then
python -m pip install pytest onnxruntime>=1.18.0
fi
script:
- cd ${CI_PROJECT_NAME}
# Retrieve the installation path of the module, since it is installed with pip.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment