Skip to content

Commit 942979f

Browse files
authored
Merge branch 'develop' into custom-domain-backend
2 parents 0fe21e9 + 1dc684a commit 942979f

File tree

16 files changed

+248
-746
lines changed

16 files changed

+248
-746
lines changed

CHANGELOG.md

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

4+
2.3.11
5+
-----
6+
### Fixes
7+
* `mftf run:failed` now correctly regenerates tests that are in suites that were parallelized (`suite` => `suite_0`, `suite_1`)
8+
49
2.3.10
510
-----
611
### Enhancements
@@ -9,6 +14,7 @@ Magento Functional Testing Framework Changelog
914

1015
### Fixes
1116
* Fixed an issue where mftf would fail to parse test materials for extensions installed under `vendor`.
17+
* Fixed a Windows compatibility issue around the use of Magento's `ComponentRegistrar` to aggregate paths.
1218
* Fixed an issue where an `element` with no `type` would cause PHP warnings during test runs.
1319

1420
2.3.9

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.10');
32+
$application->setVersion('2.3.11');
3333
/** @var \Magento\FunctionalTestingFramework\Console\CommandListInterface $commandList */
3434
$commandList = new \Magento\FunctionalTestingFramework\Console\CommandList;
3535
foreach ($commandList->getCommands() as $command) {

composer.json

Lines changed: 2 additions & 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.10",
5+
"version": "2.3.11",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
@@ -30,6 +30,7 @@
3030
"goaop/framework": "2.2.0",
3131
"codacy/coverage": "^1.4",
3232
"phpmd/phpmd": "^2.6.0",
33+
"phpunit/phpunit": "~6.5.0 || ~7.0.0",
3334
"rregeer/phpunit-coverage-check": "^0.1.4",
3435
"php-coveralls/php-coveralls": "^1.0",
3536
"symfony/stopwatch": "~3.4.6"

composer.lock

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tests/_bootstrap.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282

8383
$paths = [
8484
$suiteDirectory . DIRECTORY_SEPARATOR . 'functionalSuite.xml',
85-
$suiteDirectory . DIRECTORY_SEPARATOR . 'functionalSuiteHooks.xml'
85+
$suiteDirectory . DIRECTORY_SEPARATOR . 'functionalSuiteHooks.xml',
86+
$suiteDirectory . DIRECTORY_SEPARATOR . 'functionalSuiteExtends.xml'
8687
];
8788

8889
// create and return the iterator for these file paths

0 commit comments

Comments
 (0)