mirror of https://github.com/docker/compose.git
Remedy test failures
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
e7b7480462
commit
a85dddf83d
|
@ -258,8 +258,6 @@ class CLITestCase(DockerClientTestCase):
|
|||
'restart': ''
|
||||
},
|
||||
},
|
||||
'networks': {},
|
||||
'volumes': {},
|
||||
}
|
||||
|
||||
def test_config_external_network(self):
|
||||
|
@ -311,8 +309,6 @@ class CLITestCase(DockerClientTestCase):
|
|||
'network_mode': 'service:net',
|
||||
},
|
||||
},
|
||||
'networks': {},
|
||||
'volumes': {},
|
||||
}
|
||||
|
||||
@v3_only()
|
||||
|
@ -322,8 +318,6 @@ class CLITestCase(DockerClientTestCase):
|
|||
|
||||
assert yaml.load(result.stdout) == {
|
||||
'version': '3.2',
|
||||
'networks': {},
|
||||
'secrets': {},
|
||||
'volumes': {
|
||||
'foobar': {
|
||||
'labels': {
|
||||
|
|
|
@ -40,7 +40,9 @@ def build_config(**kwargs):
|
|||
services=kwargs.get('services'),
|
||||
volumes=kwargs.get('volumes'),
|
||||
networks=kwargs.get('networks'),
|
||||
secrets=kwargs.get('secrets'))
|
||||
secrets=kwargs.get('secrets'),
|
||||
configs=kwargs.get('configs'),
|
||||
)
|
||||
|
||||
|
||||
class ProjectTest(DockerClientTestCase):
|
||||
|
|
Loading…
Reference in New Issue