diff --git a/composer.json b/composer.json index 21248b629e..253599d25e 100755 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "magento/ece-tools", "description": "Provides tools to build and deploy Magento 2 Enterprise Edition", "type": "magento2-component", - "version": "2002.0.21", + "version": "2002.1.0", "license": "OSL-3.0", "repositories": { "repo.magento.com": { diff --git a/tests/functional/Codeception/Docker.php b/tests/functional/Codeception/Docker.php index 64e0be10a8..60ea8af5ef 100644 --- a/tests/functional/Codeception/Docker.php +++ b/tests/functional/Codeception/Docker.php @@ -339,10 +339,14 @@ public function addEceComposerRepo(): bool $commands[] = $this->taskComposerRequire('composer') ->dependency($extra['name'], $config['require'][$extra['name']]) ->noInteraction() + ->option('--no-update') ->getCommand(); } } + $commands[] = $this->taskComposerUpdate('composer') + ->getCommand(); + $result = $this->taskBash(self::BUILD_CONTAINER) ->workingDir((string)$this->_getConfig('system_magento_dir')) ->printOutput($this->_getConfig('printOutput'))