Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix library versions tests #1143

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ Fetch Image Tooltip Info
${item} = Get Text ${xpath_tooltip_items}\[${index}]
Append To List ${tmp_list} ${item}
END
Click Element xpath://div[@class='pf-v5-c-popover__content']/button[@aria-label="Close"]
Click Element xpath://div[contains(@class,'popover__close')]/button[@aria-label="Close"]
RETURN ${tmp_list}

Spawn Notebooks And Set S3 Credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,16 @@ Check Versions In JupyterLab
END
ELSE IF "${libDetail}[0]" == "Python"
${status} = Python Version Check ${libDetail}[1]
ELSE IF "${libDetail}[0]" == "Sklearn-onnx"
# lowercase string is needed as a workaround for the metadata of the tensorflow image
Fixed Show fixed Hide fixed
Dismissed Show dismissed Hide dismissed
# needs to be updated when https://issues.redhat.com/browse/RHOAIENG-2124 is resolved
Dismissed Show dismissed Hide dismissed
ELSE IF "${libDetail}[0]" == "Sklearn-onnx" or "${libDetail}[0]" == "sklearn-onnx"
${status} ${value} = Verify Installed Library Version skl2onnx ${libDetail}[1]
IF '${status}' == 'FAIL'
${return_status} = Set Variable FAIL
END
IF "${libDetail}[0]" == "sklearn-onnx"
Log Library name "${libDetail}[0]" is in all lowercase level=WARN
END
ELSE IF "${libDetail}[0]" == "MySQL Connector/Python"
${status} ${value} = Verify Installed Library Version mysql-connector-python ${libDetail}[1]
IF '${status}' == 'FAIL'
Expand Down
Loading