Skip to content

Commit

Permalink
Use run not POpen for actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Apr 11, 2024
1 parent dd1f57f commit d014fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ssh_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def setup_project_and_container_for_ssh(project):
os.chdir(image_path)

subprocess.run("docker build ssh_server .", shell=True)
subprocess.Popen(
subprocess.run(
"docker run -p 22:22 ssh_server", shell=True
) # ; docker build -t ssh_server .", shell=True) # ;docker run -p 22:22 ssh_server
import time
Expand Down

0 comments on commit d014fbe

Please sign in to comment.