From b1c2475698c94345219b4d5e830c9136be7cabbc Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Wed, 9 Sep 2015 17:09:29 -0700 Subject: [PATCH] Add hello-world to temp images in pull tests Signed-off-by: Joffrey F --- tests/integration_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration_test.py b/tests/integration_test.py index 3581b045..0cf12501 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1120,6 +1120,7 @@ class TestPull(BaseTestCase): except docker.errors.APIError: pass res = self.client.pull('hello-world') + self.tmp_imgs.append('hello-world') self.assertEqual(type(res), six.text_type) self.assertGreaterEqual( len(self.client.images('hello-world')), 1 @@ -1135,6 +1136,7 @@ class TestPullStream(BaseTestCase): except docker.errors.APIError: pass stream = self.client.pull('hello-world', stream=True) + self.tmp_imgs.append('hello-world') for chunk in stream: if six.PY3: chunk = chunk.decode('utf-8')