Make the command runner interface public (#11022)

This commit is contained in:
Ameer Haj Ali
2020-09-24 22:45:17 -07:00
committed by GitHub
parent ee85cb31a5
commit 3b6fe72029
3 changed files with 84 additions and 82 deletions
+3 -3
View File
@@ -4,9 +4,9 @@ import sys
from unittest.mock import patch
from ray.tests.test_autoscaler import MockProvider, MockProcessRunner
from ray.autoscaler._private.command_runner import CommandRunnerInterface, \
SSHCommandRunner, _with_environment_variables, DockerCommandRunner, \
KubernetesCommandRunner
from ray.autoscaler.command_runner import CommandRunnerInterface
from ray.autoscaler._private.command_runner import SSHCommandRunner, \
DockerCommandRunner, KubernetesCommandRunner, _with_environment_variables
from ray.autoscaler._private.docker import DOCKER_MOUNT_PREFIX
from getpass import getuser
import hashlib