Skip to content

Commit d4a430a

Browse files
committed
MCLOUD-8958: Deployment warning about non empty directory
1 parent 403da10 commit d4a430a

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

src/Step/Build/BackupData/StaticContent.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ private function moveStaticContent(string $originalPubStatic, string $initPubSta
115115
{
116116
try {
117117
$this->logger->info('Moving static content to init directory');
118-
$this->logger->info($originalPubStatic);
119-
$this->logger->info($initPubStatic);
120118
$this->file->rename($originalPubStatic, $initPubStatic);
121119

122120
/**

src/Test/Functional/Acceptance/WizardScdCest.php

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ public function testScdInBuildIsEnabled(\CliTester $I): void
5151
{
5252
$I->copyFileToWorkDir('files/scdinbuild/config.php', 'app/etc/config.php');
5353
$I->runDockerComposeCommand('run build cloud-build');
54-
// $I->runDockerComposeCommand('run deploy cloud-deploy');
55-
// $I->assertTrue($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-build'));
56-
// $I->seeInOutput('SCD on build is enabled');
54+
$I->runDockerComposeCommand('run deploy cloud-deploy');
55+
$I->assertTrue($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-build'));
56+
$I->seeInOutput('SCD on build is enabled');
5757
}
5858

5959
/**
@@ -68,10 +68,4 @@ public function testScdOnDemandIsEnabled(\CliTester $I): void
6868
$I->assertTrue($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-demand'));
6969
$I->seeInOutput('SCD on demand is enabled');
7070
}
71-
72-
public function _after(\CliTester $I): void
73-
{
74-
// $I->stopEnvironment();
75-
// $I->removeWorkDir();
76-
}
7771
}

0 commit comments

Comments
 (0)