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

Update dependency versions in integration tests #885

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/test_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [ "$container" == "merlin-tensorflow" ]; then
# this vesrion of pyarrow is incompatibile
# with the current version of cudf 22.12
# pinning the version of pyarrow here to match the cudf-supported version
pip install 'feast<0.20' pyarrow==8.0.0
pip install dask==2022.07.1 distributed==2022.07.1
pip install 'feast<0.20' pyarrow==9.0.0
pip install dask==2022.11.1 distributed==2022.11.1
CUDA_VISIBLE_DEVICES="$devices" pytest -rxs tests/integration
fi
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def test_func():
response = run_ensemble_on_tritonserver(
"/tmp/examples/poc_ensemble", ensemble.graph.input_schema, request, outputs, "executor_model"
)
response = [x.tolist()[0] for x in response["ordered_ids"]]
ordered_ids = [x.tolist() for x in response["ordered_ids"]]
shutil.rmtree("/tmp/examples/", ignore_errors=True)
"""
)
response = tb2.ref("response")
assert len(response) == top_k
ordered_ids = tb2.ref("ordered_ids")
assert len(ordered_ids[0]) == top_k