Skip to content

Commit b1c2475

Browse files
committed
Add hello-world to temp images in pull tests
Signed-off-by: Joffrey F <[email protected]>
1 parent 1fb2db4 commit b1c2475

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/integration_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,7 @@ def runTest(self):
11201120
except docker.errors.APIError:
11211121
pass
11221122
res = self.client.pull('hello-world')
1123+
self.tmp_imgs.append('hello-world')
11231124
self.assertEqual(type(res), six.text_type)
11241125
self.assertGreaterEqual(
11251126
len(self.client.images('hello-world')), 1
@@ -1135,6 +1136,7 @@ def runTest(self):
11351136
except docker.errors.APIError:
11361137
pass
11371138
stream = self.client.pull('hello-world', stream=True)
1139+
self.tmp_imgs.append('hello-world')
11381140
for chunk in stream:
11391141
if six.PY3:
11401142
chunk = chunk.decode('utf-8')

0 commit comments

Comments
 (0)