Only pull ubuntu:latest in tests

Might stop Travis running out of disk space.
This commit is contained in:
Ben Firshman 2014-01-26 20:37:30 +00:00
parent ee49e7055b
commit ddf6819a75
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class DockerClientTestCase(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.client = Client(docker_url())
cls.client.pull('ubuntu')
cls.client.pull('ubuntu', tag='latest')
def setUp(self):
for c in self.client.containers(all=True):