Ignore test failures in storage_opt test

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-06-23 15:28:35 -07:00 committed by Joffrey F
parent 4dd54b83e8
commit 515526f0ff
1 changed files with 1 additions and 0 deletions

View File

@ -208,6 +208,7 @@ class ServiceTest(DockerClientTestCase):
service.start_container(container)
self.assertEqual(set(container.get('HostConfig.SecurityOpt')), set(security_opt))
@pytest.mark.xfail(True, reason='Not supported on most drivers')
def test_create_container_with_storage_opt(self):
storage_opt = {'size': '1G'}
service = self.create_service('db', storage_opt=storage_opt)