Skip to content

Commit

Permalink
[ci] fix ray_release import (ray-project#44430)
Browse files Browse the repository at this point in the history
Fix ray_release import across ci/ray_ci.

Signed-off-by: can <[email protected]>
  • Loading branch information
can-anyscale authored Apr 2, 2024
1 parent 017eec5 commit b5e5d36
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ci/ray_ci/automation/test_db_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from ci.ray_ci.utils import logger, ci_init
from ci.ray_ci.tester_container import TesterContainer
from release.ray_release.configs.global_config import BRANCH_PIPELINES
from ray_release.configs.global_config import BRANCH_PIPELINES


@click.command()
Expand Down
2 changes: 1 addition & 1 deletion ci/ray_ci/ray_docker_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from ci.ray_ci.docker_container import DockerContainer
from ci.ray_ci.builder_container import PYTHON_VERSIONS, DEFAULT_ARCHITECTURE
from ci.ray_ci.utils import docker_pull, RAY_VERSION
from release.ray_release.configs.global_config import BRANCH_PIPELINES
from ray_release.configs.global_config import BRANCH_PIPELINES


class RayDockerContainer(DockerContainer):
Expand Down
2 changes: 1 addition & 1 deletion ci/ray_ci/test_linux_tester_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ci.ray_ci.linux_tester_container import LinuxTesterContainer
from ci.ray_ci.utils import chunk_into_n
from ci.ray_ci.container import _DOCKER_ECR_REPO, _RAYCI_BUILD_ID
from release.ray_release.configs.global_config import BRANCH_PIPELINES, PR_PIPELINES
from ray_release.configs.global_config import BRANCH_PIPELINES, PR_PIPELINES


class MockPopen:
Expand Down
2 changes: 1 addition & 1 deletion ci/ray_ci/test_ray_docker_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ci.ray_ci.ray_docker_container import RayDockerContainer
from ci.ray_ci.test_base import RayCITestBase
from ci.ray_ci.utils import RAY_VERSION
from release.ray_release.configs.global_config import BRANCH_PIPELINES
from ray_release.configs.global_config import BRANCH_PIPELINES


class TestRayDockerContainer(RayCITestBase):
Expand Down
2 changes: 1 addition & 1 deletion ci/ray_ci/tester_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from ci.ray_ci.utils import logger
from ci.ray_ci.container import Container
from ray_release.test import TestResult, Test
from release.ray_release.configs.global_config import BRANCH_PIPELINES, PR_PIPELINES
from ray_release.configs.global_config import BRANCH_PIPELINES, PR_PIPELINES


class TesterContainer(Container):
Expand Down
2 changes: 1 addition & 1 deletion release/ray_release/tests/test_global_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from release.ray_release.configs.global_config import (
from ray_release.configs.global_config import (
init_global_config,
get_global_config,
)
Expand Down

0 comments on commit b5e5d36

Please sign in to comment.