File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 6
6
from docker .constants import IS_WINDOWS_PLATFORM
7
7
from docker .utils .socket import next_frame_size
8
8
from docker .utils .socket import read_exactly
9
+
9
10
import pytest
11
+
10
12
import six
11
13
12
- from .. helpers import requires_api_version
14
+ from .base import BUSYBOX , BaseAPIIntegrationTest
13
15
from .. import helpers
14
- from .base import BaseAPIIntegrationTest , BUSYBOX
16
+ from .. helpers import requires_api_version
15
17
16
18
17
19
class ListContainersTest (BaseAPIIntegrationTest ):
@@ -423,9 +425,8 @@ def test_create_with_stop_timeout(self):
423
425
assert config ['Config' ]['StopTimeout' ] == 25
424
426
425
427
@requires_api_version ('1.24' )
428
+ @pytest .mark .xfail (True , reason = 'Not supported on most drivers' )
426
429
def test_create_with_storage_opt (self ):
427
- if self .client .info ()['Driver' ] == 'aufs' :
428
- return pytest .skip ('Not supported on AUFS' )
429
430
host_config = self .client .create_host_config (
430
431
storage_opt = {'size' : '120G' }
431
432
)
You can’t perform that action at this time.
0 commit comments