mirror of https://github.com/docker/compose.git
Fix race condition in cli_test.py
We weren't waiting for the build to finish, causing the rest of the test to occasionally fail when looking for the image. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
5d76d183b4
commit
537d435a28
|
@ -170,7 +170,7 @@ class CLITestCase(DockerClientTestCase):
|
|||
@patch('dockerpty.start')
|
||||
def test_run_without_command(self, __):
|
||||
self.command.base_dir = 'tests/fixtures/commands-figfile'
|
||||
self.client.build('tests/fixtures/simple-dockerfile', tag='figtest_test')
|
||||
self.check_build('tests/fixtures/simple-dockerfile', tag='figtest_test')
|
||||
|
||||
for c in self.project.containers(stopped=True, one_off=True):
|
||||
c.remove()
|
||||
|
|
|
@ -3,6 +3,7 @@ from __future__ import absolute_import
|
|||
from docker import Client
|
||||
from fig.service import Service
|
||||
from fig.cli.utils import docker_url
|
||||
from fig.progress_stream import stream_output
|
||||
from .. import unittest
|
||||
|
||||
|
||||
|
@ -31,5 +32,6 @@ class DockerClientTestCase(unittest.TestCase):
|
|||
**kwargs
|
||||
)
|
||||
|
||||
|
||||
|
||||
def check_build(self, *args, **kwargs):
|
||||
build_output = self.client.build(*args, **kwargs)
|
||||
stream_output(build_output, open('/dev/null', 'w'))
|
||||
|
|
Loading…
Reference in New Issue