File tree 2 files changed +14
-4
lines changed
2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,17 @@ exports.builder = (yargs) => (
9
9
yargs
10
10
. commandDir ( 'test_cmds' )
11
11
. option ( 'docker_compose' , {
12
- type : 'array' ,
13
- describe : 'docker-compose files for testing' ,
14
- default : [ './test/docker-compose.yml' ] ,
12
+ describe : 'docker-compose file for testing' ,
13
+ default : './test/docker-compose.yml' ,
15
14
normalize : true ,
16
15
} )
16
+ . option ( 'docker_compose_multi' , {
17
+ alias : 'dcm' ,
18
+ describe : 'docker-compose files that will be started in provided order' ,
19
+ type : 'string' ,
20
+ array : true ,
21
+ default : [ ] ,
22
+ } )
17
23
. option ( 'parallel' , {
18
24
type : 'number' ,
19
25
description : 'run test suites in parallel' ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const {
11
11
} = require ( 'shelljs' ) ;
12
12
13
13
const isWin = process . platform === 'win32' ;
14
- const withComposeFile = ( filepaths ) => `-f ${ filepaths . join ( ' -f ' ) } ` ;
14
+ const withComposeFile = ( filepath ) => `-f ${ filepath } ` ;
15
15
16
16
exports . command = 'compose' ;
17
17
exports . desc = 'installs compose on the system' ;
@@ -62,6 +62,10 @@ exports.handler = (argv) => {
62
62
}
63
63
}
64
64
65
+ if ( argv . docker_compose_multi . length > 0 ) {
66
+ dockerComposeFiles = `-f ${ argv . docker_compose_multi . join ( ' -f ' ) } ` ;
67
+ }
68
+
65
69
// add link to compose file
66
70
argv . compose = ShellString ( `"${ compose } " ${ dockerComposeFiles } ` ) ;
67
71
You can’t perform that action at this time.
0 commit comments