Skip to content

Commit 9885925

Browse files
committed
Split suite and default tests to different groups
- update composer.json hash, CHANGELOG.md - Unit test fix
1 parent 6e25452 commit 9885925

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
2.3.9
4+
-----
5+
### Fixes
6+
* Logic for parallel execution were updated to split default tests and suites from running in one group.
37

48
2.3.8
59
-----

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.9",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tests/unit/Magento/FunctionalTestFramework/Util/Sorter/ParallelGroupSorterTest.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,11 @@ public function testSortWithSuites()
101101
$this->assertCount(4, $actualResult);
102102

103103
$expectedResults = [
104-
1 => ['test3'],
105-
2 => ['test2','test5', 'test4'],
106-
3 => ['mockSuite1_0', 'test1'],
107-
4 => ['mockSuite1_1']
104+
1 => ['mockSuite1_0'],
105+
2 => ['mockSuite1_1'],
106+
3 => ['test3'],
107+
4 => ['test2','test5', 'test4'],
108+
5 => ['test1'],
108109
];
109110

110111
foreach ($actualResult as $groupNum => $group) {

0 commit comments

Comments
 (0)