Skip to content
Merged
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
6 changes: 5 additions & 1 deletion ci/test_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ devices=$2

# Run only for Merlin Tensorflow Container
if [ "$container" == "merlin-tensorflow" ]; then
pip install 'feast<0.20'
# feast will install latest pyarrow version (currently 10.0.1)
# 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
CUDA_VISIBLE_DEVICES="$devices" pytest -rxs tests/integration
fi