@@ -313,7 +313,7 @@ def runTest(self):
313
313
self .assertFalse (inspect_data ['VolumesRW' ][mount_dest ])
314
314
315
315
316
- @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE )
316
+ @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE , 'Exec driver not native' )
317
317
class TestCreateContainerReadOnlyFs (BaseTestCase ):
318
318
def runTest (self ):
319
319
ctnr = self .client .create_container (
@@ -327,7 +327,7 @@ def runTest(self):
327
327
self .assertNotEqual (res , 0 )
328
328
329
329
330
- @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE )
330
+ @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE , 'Exec driver not native' )
331
331
class TestStartContainerReadOnlyFs (BaseTestCase ):
332
332
def runTest (self ):
333
333
# Presumably a bug in 1.5.0
@@ -985,7 +985,7 @@ def runTest(self):
985
985
self .client .remove_container (id , force = True )
986
986
987
987
988
- @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE )
988
+ @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE , 'Exec driver not native' )
989
989
class TestExecuteCommand (BaseTestCase ):
990
990
def runTest (self ):
991
991
container = self .client .create_container ('busybox' , 'cat' ,
@@ -999,7 +999,7 @@ def runTest(self):
999
999
self .assertEqual (res , expected )
1000
1000
1001
1001
1002
- @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE )
1002
+ @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE , 'Exec driver not native' )
1003
1003
class TestExecuteCommandString (BaseTestCase ):
1004
1004
def runTest (self ):
1005
1005
container = self .client .create_container ('busybox' , 'cat' ,
@@ -1013,7 +1013,7 @@ def runTest(self):
1013
1013
self .assertEqual (res , expected )
1014
1014
1015
1015
1016
- @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE )
1016
+ @unittest .skipIf (not EXEC_DRIVER_IS_NATIVE , 'Exec driver not native' )
1017
1017
class TestExecuteCommandStreaming (BaseTestCase ):
1018
1018
def runTest (self ):
1019
1019
container = self .client .create_container ('busybox' , 'cat' ,
0 commit comments