Remove dependencies installation from acceptace tests
[MAILPOET-1535]
This commit is contained in:
@ -231,19 +231,19 @@ class RoboFile extends \Robo\Tasks {
|
||||
return $this->_exec($command);
|
||||
}
|
||||
|
||||
function testAcceptance($opts=['file' => null, 'keep-deps' => false]) {
|
||||
function testAcceptance($opts=['file' => null, 'skip-deps' => false]) {
|
||||
return $this->_exec(
|
||||
'COMPOSE_HTTP_TIMEOUT=200 docker-compose run ' .
|
||||
($opts['keep-deps'] ? '-e KEEP_DEPS=1 ' : '') .
|
||||
($opts['skip-deps'] ? '-e SKIP_DEPS=1 ' : '') .
|
||||
'codeception --steps --debug -vvv ' .
|
||||
'-f ' . ($opts['file'] ? $opts['file'] : '')
|
||||
);
|
||||
}
|
||||
|
||||
function testAcceptanceMultisite($opts=['file' => null, 'keep-deps' => false]) {
|
||||
function testAcceptanceMultisite($opts=['file' => null, 'skip-deps' => false]) {
|
||||
return $this->_exec(
|
||||
'COMPOSE_HTTP_TIMEOUT=200 docker-compose run ' .
|
||||
($opts['keep-deps'] ? '-e KEEP_DEPS=1 ' : '') .
|
||||
($opts['skip-deps'] ? '-e SKIP_DEPS=1 ' : '') .
|
||||
'-e MULTISITE=1 ' .
|
||||
'codeception --steps --debug -vvv' .
|
||||
'-f ' . ($opts['file'] ? $opts['file'] : '')
|
||||
|
Reference in New Issue
Block a user