mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
This reverts commit 6acd0a4c9b
.
This commit is contained in:
parent
b95f7b222e
commit
fda345335a
4 changed files with 4 additions and 3 deletions
|
@ -376,6 +376,7 @@
|
||||||
commands:
|
commands:
|
||||||
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
|
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
|
||||||
- RLLIB_TESTING=1 ./ci/env/install-dependencies.sh
|
- RLLIB_TESTING=1 ./ci/env/install-dependencies.sh
|
||||||
|
- pip install "grpcio >= 1.28.1, <= 1.43.0"
|
||||||
- bazel test --config=ci --config=asan $(./ci/run/bazel_export_options)
|
- bazel test --config=ci --config=asan $(./ci/run/bazel_export_options)
|
||||||
--config=asan-buildkite
|
--config=asan-buildkite
|
||||||
--test_tag_filters=-kubernetes,asan_tests
|
--test_tag_filters=-kubernetes,asan_tests
|
||||||
|
|
|
@ -468,7 +468,7 @@ def test_runtime_env_log_msg(
|
||||||
|
|
||||||
good_env = runtime_env_class(pip=["requests"])
|
good_env = runtime_env_class(pip=["requests"])
|
||||||
ray.get(f.options(runtime_env=good_env).remote())
|
ray.get(f.options(runtime_env=good_env).remote())
|
||||||
sources = get_log_sources(p, timeout=10)
|
sources = get_log_sources(p, 5)
|
||||||
if local_env_var_enabled:
|
if local_env_var_enabled:
|
||||||
assert "runtime_env" in sources
|
assert "runtime_env" in sources
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -12,7 +12,7 @@ cloudpickle
|
||||||
filelock
|
filelock
|
||||||
frozenlist
|
frozenlist
|
||||||
gpustat == 1.0.0b1
|
gpustat == 1.0.0b1
|
||||||
grpcio >= 1.28.1, != 1.44.*, != 1.45.*, != 1.46.*, != 1.47.*
|
grpcio >= 1.28.1, <= 1.43.0
|
||||||
jsonschema
|
jsonschema
|
||||||
msgpack >= 1.0.0, < 2.0.0
|
msgpack >= 1.0.0, < 2.0.0
|
||||||
numpy >= 1.16
|
numpy >= 1.16
|
||||||
|
|
|
@ -286,7 +286,7 @@ if setup_spec.type == SetupType.RAY:
|
||||||
"click >= 7.0, <= 8.0.4",
|
"click >= 7.0, <= 8.0.4",
|
||||||
"dataclasses; python_version < '3.7'",
|
"dataclasses; python_version < '3.7'",
|
||||||
"filelock",
|
"filelock",
|
||||||
"grpcio >= 1.28.1, != 1.44.*, != 1.45.*, != 1.46.*, != 1.47.*",
|
"grpcio >= 1.28.1, <= 1.43.0",
|
||||||
"jsonschema",
|
"jsonschema",
|
||||||
"msgpack >= 1.0.0, < 2.0.0",
|
"msgpack >= 1.0.0, < 2.0.0",
|
||||||
"numpy >= 1.16; python_version < '3.9'",
|
"numpy >= 1.16; python_version < '3.9'",
|
||||||
|
|
Loading…
Add table
Reference in a new issue