Merge pull request #4736 from shin-/4734-config_secrets

Repair bad import
This commit is contained in:
Joffrey F 2017-04-17 19:27:43 -07:00 committed by GitHub
commit baf457c78c
2 changed files with 3 additions and 2 deletions

View File

@ -7,9 +7,9 @@ import yaml
from compose.config import types
from compose.const import COMPOSEFILE_V1 as V1
from compose.const import COMPOSEFILE_V2_1 as V2_1
from compose.const import COMPOSEFILE_V2_1 as V2_2
from compose.const import COMPOSEFILE_V2_2 as V2_2
from compose.const import COMPOSEFILE_V3_1 as V3_1
from compose.const import COMPOSEFILE_V3_1 as V3_2
from compose.const import COMPOSEFILE_V3_2 as V3_2
def serialize_config_type(dumper, data):

View File

@ -323,6 +323,7 @@ class CLITestCase(DockerClientTestCase):
assert yaml.load(result.stdout) == {
'version': '3.2',
'networks': {},
'secrets': {},
'volumes': {
'foobar': {
'labels': {