summaryrefslogtreecommitdiff
path: root/contrib/python/test/podman_testcase.py
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-06-01 11:41:16 -0400
committerGitHub <noreply@github.com>2018-06-01 11:41:16 -0400
commit3f29e3e88110fd1a1c0b7d2058aa2c89dbb89c40 (patch)
tree8c52d190cf29a0d4f5fe958ada4c0e15ecfeebdd /contrib/python/test/podman_testcase.py
parentff3b46e769bc9a064ee8f45b9dbff8795d94bb7a (diff)
parent2cb881fa58a6a8fe6c89ec2885f01ebb3d74d871 (diff)
downloadpodman-3f29e3e88110fd1a1c0b7d2058aa2c89dbb89c40.tar.gz
podman-3f29e3e88110fd1a1c0b7d2058aa2c89dbb89c40.tar.bz2
podman-3f29e3e88110fd1a1c0b7d2058aa2c89dbb89c40.zip
Merge pull request #869 from jwhonce/wip/attach
Implement container attach
Diffstat (limited to 'contrib/python/test/podman_testcase.py')
-rw-r--r--contrib/python/test/podman_testcase.py3
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,