Skip to content

Commit

Permalink
Fix CI failures (ray-project#35910)
Browse files Browse the repository at this point in the history
ray-project#35286 broke CI. These issues weren't caught earlier because the PR was out of date with master.
  • Loading branch information
bveeramani authored May 31, 2023
1 parent 081a4ba commit 827db0d
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bazel/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exports_files([
"pytest_wrapper.py",
"conftest.py"
"conftest.py",
])
3 changes: 2 additions & 1 deletion doc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -319,5 +319,6 @@ doctest(
"source/rllib/rllib-sample-collection.rst",
]
),
size="large"
size = "large",
tags = ["team:none"]
)
1 change: 1 addition & 0 deletions python/ray/experimental/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ load("//bazel:python.bzl", "doctest")

doctest(
files = glob(["**/*.py"]),
tags = ["team:none"]
)
1 change: 1 addition & 0 deletions python/ray/scripts/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ load("//bazel:python.bzl", "doctest")

doctest(
files = glob(["**/*.py"]),
tags = ["team:core"]
)
11 changes: 10 additions & 1 deletion python/ray/serve/BUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
load("//bazel:python.bzl", "doctest")

doctest(
files = glob(["**/*.py"], exclude=["examples/**/*", "tests/**/*", "benchmarks/**/*"]),
files = glob(
["**/*.py"],
exclude=[
"examples/**",
"tests/**",
"benchmarks/**",
# FIXME: Failing on Windows
"gradio_integrations.py"
]
),
tags = ["team:serve"]
)

Expand Down
2 changes: 1 addition & 1 deletion python/ray/tests/gcp/test_gcp_node_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
GCPResource,
)

from python.ray.autoscaler._private.gcp.node_provider import GCPNodeProvider
from ray.autoscaler._private.gcp.node_provider import GCPNodeProvider

_PROJECT_NAME = "project-one"
_AZ = "us-west1-b"
Expand Down
1 change: 1 addition & 0 deletions python/ray/workflow/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ load("//bazel:python.bzl", "doctest")

doctest(
files = glob(["**/*.py"], exclude=["tests/**/*", "examples/**/*"]),
tags = ["team:none"]
)

SRCS = glob(["**/conftest.py"])
Expand Down

0 comments on commit 827db0d

Please sign in to comment.