summaryrefslogtreecommitdiff
path: root/contrib/python/podman/test/test_images.py
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2018-10-10 09:24:17 -0700
committerJhon Honce <jhonce@redhat.com>2018-10-12 09:34:23 -0700
commit40cb7568017a36b411801608a32cdd8502287924 (patch)
tree1f5bbccd42e843d223eaa5cfa08133253d5d1673 /contrib/python/podman/test/test_images.py
parentb0b6dc40bd916698f87bc68f7b4b603582e93ef2 (diff)
downloadpodman-40cb7568017a36b411801608a32cdd8502287924.tar.gz
podman-40cb7568017a36b411801608a32cdd8502287924.tar.bz2
podman-40cb7568017a36b411801608a32cdd8502287924.zip
Add support for pod commands
* Add support for pod -- create, inspect, kill, pause, ps, rm, restart, start, stop, top, unpause * Update pylintrc to better reflect pep8 code standards * Fix various pylint reported errors * Refactor code that determines screen width to no longer require initializing curses. Improved start up time and pushing data blob down ssh tunnel. * Correct pod-create man page, cgroupparent not boolean * Abort integration tests if podman service fails to start Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman/test/test_images.py')
-rw-r--r--contrib/python/podman/test/test_images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/test/test_images.py b/contrib/python/podman/test/test_images.py
index 854f57dd7..f6b95f98a 100644
--- a/contrib/python/podman/test/test_images.py
+++ b/contrib/python/podman/test/test_images.py
@@ -64,7 +64,7 @@ class TestImages(PodmanTestCase):
self.assertEqual(actual.status, 'configured')
ctnr = actual.start()
- self.assertIn(ctnr.status, ['running', 'exited'])
+ self.assertIn(ctnr.status, ['running', 'stopped', 'exited'])
ctnr_details = ctnr.inspect()
for e in img_details.containerconfig['env']: