Skip to content

Commit c3a9756

Browse files
authored
[Serve] Remove air integrations (#39907)
1 parent c95980a commit c3a9756

File tree

6 files changed

+15
-472
lines changed

6 files changed

+15
-472
lines changed

.buildkite/pipeline.gpu.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,21 @@
2929
rllib/...
3030

3131

32-
- label: ":tv: :serverless: Serve Tests"
33-
conditions:
34-
[
35-
"NO_WHEELS_REQUIRED",
36-
"RAY_CI_SERVE_AFFECTED",
37-
"RAY_CI_PYTHON_AFFECTED",
38-
"RAY_CI_ML_AFFECTED",
39-
]
40-
commands:
41-
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
42-
- ./ci/env/install-dependencies.sh
43-
- pip install -Ur ./python/requirements/ml/dl-gpu-requirements.txt
44-
- bazel test --config=ci $(./ci/run/bazel_export_options) --test_tag_filters=gpu
45-
python/ray/serve/...
32+
# Serve doesn't have gpu tests now (Oct 6 2023)
33+
#- label: ":tv: :serverless: Serve Tests"
34+
# conditions:
35+
# [
36+
# "NO_WHEELS_REQUIRED",
37+
# "RAY_CI_SERVE_AFFECTED",
38+
# "RAY_CI_PYTHON_AFFECTED",
39+
# "RAY_CI_ML_AFFECTED",
40+
# ]
41+
# commands:
42+
# - cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
43+
# - ./ci/env/install-dependencies.sh
44+
# - pip install -Ur ./python/requirements/ml/dl-gpu-requirements.txt
45+
# - bazel test --config=ci $(./ci/run/bazel_export_options) --test_tag_filters=gpu
46+
# python/ray/serve/...
4647

4748
# Todo: enable once tests pass
4849
#- label: ":tv: :brain: RLlib: GPU Examples {C/D}"

ci/ci.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ test_serve() {
218218
-python/ray/serve/tests:test_standalone_2 # Multinode not supported on Windows
219219
-python/ray/serve/tests:test_gradio
220220
-python/ray/serve/tests:test_gradio_visualization
221-
-python/ray/serve/tests:test_air_integrations_gpu
222221
-python/ray/serve/tests:test_fastapi
223222
-python/ray/serve/tests:test_get_deployment # address violation
224223
)

python/ray/serve/tests/BUILD

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ py_test_module_list(
6666
"test_cluster.py",
6767
"test_autoscaling_policy.py",
6868
"test_fastapi.py",
69-
"test_air_integrations.py",
7069
"test_deployment_graph.py",
7170
"test_deployment_graph_autoscaling.py",
7271
"test_cancellation.py",
@@ -130,17 +129,6 @@ py_test_module_list(
130129
data = glob(["test_config_files/**/*"]),
131130
)
132131

133-
# GPU tests.
134-
py_test_module_list(
135-
files = [
136-
"test_air_integrations_gpu.py",
137-
],
138-
size = "small",
139-
tags = ["exclusive", "team:serve", "gpu"],
140-
deps = ["//python/ray/serve:serve_lib", ":conftest", ":common"],
141-
)
142-
143-
144132
# Runs test_api and test_failure with injected failures in the controller.
145133
py_test(
146134
name = "test_controller_crashes",

0 commit comments

Comments
 (0)