Skip to content

Commit f6bbe8c

Browse files
authored
Merge pull request #648 from magento/MQE-2032
MQE-2032: Remove temporary solutions for MFTF 3.0 development needs
2 parents dd397ac + 7df1df8 commit f6bbe8c

File tree

4 files changed

+2
-105
lines changed

4 files changed

+2
-105
lines changed

src/Magento/FunctionalTestingFramework/Config/MftfApplicationConfig.php

-6
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,6 @@ private function __construct(
100100

101101
$this->phase = $phase;
102102
$this->verboseEnabled = $verboseEnabled;
103-
104-
//TODO: overriding pipeline config, to be removed for MFTF 3.0.0
105-
if (strtolower($debugLevel) === 'none') {
106-
$debugLevel = self::LEVEL_DEFAULT;
107-
}
108-
109103
if (isset($debugLevel) && !in_array(strtolower($debugLevel), self::MFTF_DEBUG_LEVEL)) {
110104
throw new TestFrameworkException("{$debugLevel} is not a debug level. Use 'DEFAULT' or 'DEVELOPER'");
111105
}

src/Magento/FunctionalTestingFramework/Console/BuildProjectCommand.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,11 @@ function ($type, $buffer) use ($output) {
107107
);
108108
}
109109

110-
// Temporary enable upgrade at build time for testing
111-
//if ($input->getOption('upgrade')) {
110+
if ($input->getOption('upgrade')) {
112111
$upgradeCommand = new UpgradeTestsCommand();
113112
$upgradeOptions = new ArrayInput([]);
114113
$upgradeCommand->run($upgradeOptions, $output);
115-
//}
114+
}
116115
}
117116

118117
/**

src/Magento/FunctionalTestingFramework/Helper/Acceptance.php

-42
This file was deleted.

src/Magento/FunctionalTestingFramework/Helper/MagentoFakerData.php

-54
This file was deleted.

0 commit comments

Comments
 (0)