Skip to content

Commit 57c1ede

Browse files
committed
Merge remote-tracking branch 'magento/master' into contribution
# Conflicts: # composer.lock
2 parents 198aeaa + 7cd80db commit 57c1ede

File tree

14 files changed

+517
-180
lines changed

14 files changed

+517
-180
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Magento Functional Testing Framework Changelog
22
================================================
33

4+
2.3.10
5+
-----
6+
### Enhancements
7+
* Maintainability
8+
* Added new `mftf run:failed` commands, which reruns all failed tests from last run configuration.
9+
10+
### Fixes
11+
* Fixed an issue where mftf would fail to parse test materials for extensions installed under `vendor`.
12+
* Fixed a Windows compatibility issue around the use of Magento's `ComponentRegistrar` to aggregate paths.
13+
* Fixed an issue where an `element` with no `type` would cause PHP warnings during test runs.
14+
15+
2.3.9
16+
-----
17+
### Fixes
18+
* Logic for parallel execution were updated to split default tests and suites from running in one group.
19+
420
2.3.8
521
-----
622
### Fixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
## Installation
88

9-
For the installation guidelines and system requirements, read [Getting Started](https://devdocs.magento.com/mftf/2.3/getting-started.html).
9+
For the installation guidelines and system requirements, refer to [Getting Started](https://devdocs.magento.com/mftf/2.3/getting-started.html).
1010

1111
## Contributing
1212

1313
We would appreciate your contributions to new components or new features, changes to the existing features, tests, documentation, specifications, bug fixes, optimizations, or just good suggestions.
1414
Report about an issue or request features opening a GitHub issue.
15-
Learn more about contributing in our [Contribution Guidelines](https://devdocs.magento.com/mftf/2.3/contribution-guidelines.html).
15+
Learn more about contributing in our [Contribution Guidelines](.github/CONTRIBUTING.md).
1616

1717
If you want to participate in the documentation work, see [DevDocs Contributing](https://github.com/magento/devdocs/blob/master/.github/CONTRIBUTING.md).
1818

bin/mftf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ try {
2929
try {
3030
$application = new Symfony\Component\Console\Application();
3131
$application->setName('Magento Functional Testing Framework CLI');
32-
$application->setVersion('2.3.8');
32+
$application->setVersion('2.3.10');
3333
/** @var \Magento\FunctionalTestingFramework\Console\CommandListInterface $commandList */
3434
$commandList = new \Magento\FunctionalTestingFramework\Console\CommandList;
3535
foreach ($commandList->getCommands() as $command) {

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "2.3.8",
5+
"version": "2.3.10",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

0 commit comments

Comments
 (0)