Skip to content

Commit

Permalink
MFTF 3.12.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
manjusha729 committed Nov 25, 2024
1 parent f162f95 commit fafe5cd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Magento Functional Testing Framework Changelog
================================================
3.12.5
---------

### Fixes
* Provided support for 7.4 and above

3.12.4
---------
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "magento/magento2-functional-testing-framework",
"description": "Magento2 Functional Testing Framework",
"type": "library",
"version": "3.12.4",
"version": "3.12.5",
"license": "AGPL-3.0",
"keywords": ["magento", "automation", "functional", "testing"],
"config": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions etc/config/command.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
try {
$process->run();
$output = $process->getOutput();
echo $output;
if (!$process->isSuccessful()) {
$failureOutput = $process->getErrorOutput();
if (!empty($failureOutput)) {
Expand All @@ -48,7 +47,6 @@
}

if (checkForFilePath($output)) {
echo __LINE__.$output;
$output = "CLI output suppressed, filepath detected in output.";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ public function write($url, $body = [], $method = CurlInterface::POST, $headers
public function read($successRegex = null, $returnRegex = null, $returnIndex = null)
{
$response = curl_exec($this->getResource());
print_r($response);
if ($response === false) {
throw new TestFrameworkException(curl_error($this->getResource()));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,6 @@ public function magentoCLI($command, $timeout = null, $arguments = null)
);

$executor = new CurlTransport();
echo "api url".$apiURL;
echo "token ".WebApiAuth::getAdminToken();
echo "arguments" .$arguments;
$executor->write(
$apiURL,
[
Expand Down

0 comments on commit fafe5cd

Please sign in to comment.