We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995175d commit 566e88cCopy full SHA for 566e88c
1 file changed
tests/ssh_test_utils.py
@@ -105,7 +105,7 @@ def setup_ssh_container(container_name):
105
image_path = Path(__file__).parent / "ssh_test_images"
106
os.chdir(image_path)
107
108
- if platform.system() == "Linux":
+ if platform.system() != "Windows":
109
build_command = "sudo docker build -t ssh_server ."
110
run_command = f"sudo docker run -d -p {PORT}:22 --name {container_name} ssh_server"
111
else:
0 commit comments