mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

The local environment setup of release tests (in client tests) can sometimes update dependencies of the `anyscale` package to an unsupported version. By re-installing the `anyscale` package after local env setup, we make sure that we can connect to the cluster. Note that this may lead to incompatibilities of the test script, however.
5 lines
81 B
Bash
Executable file
5 lines
81 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd "${0%/*}" || exit 1
|
|
|
|
pip install -U -r ./driver_requirements.txt
|