Skip to content

Commit

Permalink
Split suite and default tests to different groups
Browse files Browse the repository at this point in the history
- update composer.json hash, CHANGELOG.md
- Unit test fix
  • Loading branch information
okolesnyk committed Oct 28, 2018
1 parent 6e25452 commit 9885925
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Magento Functional Testing Framework Changelog
================================================
2.3.9
-----
### Fixes
* Logic for parallel execution were updated to split default tests and suites from running in one group.

2.3.8
-----
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": "2.3.8",
"version": "2.3.9",
"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.

Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,11 @@ public function testSortWithSuites()
$this->assertCount(4, $actualResult);

$expectedResults = [
1 => ['test3'],
2 => ['test2','test5', 'test4'],
3 => ['mockSuite1_0', 'test1'],
4 => ['mockSuite1_1']
1 => ['mockSuite1_0'],
2 => ['mockSuite1_1'],
3 => ['test3'],
4 => ['test2','test5', 'test4'],
5 => ['test1'],
];

foreach ($actualResult as $groupNum => $group) {
Expand Down

0 comments on commit 9885925

Please sign in to comment.