diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-05-25 15:18:43 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-05-31 20:13:35 -0700 |
commit | 2cb881fa58a6a8fe6c89ec2885f01ebb3d74d871 (patch) | |
tree | 4cca7b43b7e7e7ab1bff0687d846f2cc6e6540c7 /contrib/python/test/podman_testcase.py | |
parent | a9e9fd4f5b56f0dd91944b86feba9a2d3814d93e (diff) | |
download | podman-2cb881fa58a6a8fe6c89ec2885f01ebb3d74d871.tar.gz podman-2cb881fa58a6a8fe6c89ec2885f01ebb3d74d871.tar.bz2 podman-2cb881fa58a6a8fe6c89ec2885f01ebb3d74d871.zip |
Implement container attach
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/test/podman_testcase.py')
-rw-r--r-- | contrib/python/test/podman_testcase.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/python/test/podman_testcase.py b/contrib/python/test/podman_testcase.py index fc99f26ce..f96a3a013 100644 --- a/contrib/python/test/podman_testcase.py +++ b/contrib/python/test/podman_testcase.py @@ -62,7 +62,8 @@ class PodmanTestCase(unittest.TestCase): cmd = ['podman'] cmd.extend(podman_args) - cmd.extend(['run', '-d', 'alpine', 'sleep', '500']) + # cmd.extend(['run', '-d', 'alpine', 'sleep', '500']) + cmd.extend(['run', '-dt', 'alpine', '/bin/sh']) PodmanTestCase.alpine_process = subprocess.Popen( cmd, stdout=PodmanTestCase.alpine_log, |