Skip to content

Commit e445902

Browse files
committed
MQE-1541: Add option to generate:tests for XSD validation on 'merged files'
added debug levels to run:test, run:failed, run:group
3 parents c83f2e9 + 5f0e625 + 0e18c22 commit e445902

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

CHANGELOG.md

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

4+
2.4.1
5+
-----
6+
* Traceability
7+
* XSD Schema validation is now enabled by default in `generate:tests`
8+
* `generate:tests --debug` option has been updated to include different debug levels
9+
* See DevDocs for details
10+
11+
### Fixes
12+
* Fixed an issue where `skipReadiness` attribute would cause false XSD Schema validation errors.
13+
414
2.4.0
515
-----
616
### Enhancements

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.4.0');
32+
$application->setVersion('2.4.1');
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.4.0",
5+
"version": "2.4.1",
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.

docs/commands/mftf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Generates and executes tests by name using Codeception.
320320
#### Usage
321321

322322
```bash
323-
vendor/bin/mftf run:test [--skip-generate|--remove] [--] <name1> [<name2>] [--debug|
323+
vendor/bin/mftf run:test [--skip-generate|--remove] [--] <name1> [<name2>]
324324
```
325325

326326
#### Options

docs/versioning.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ X.Y.Z
3030
| | +-- Backward Compatible changes (Patch release - bug fixes, small additions)
3131
| +---- Backward Compatible changes (Minor release - small new features, bug fixes)
3232
+------ Backward Incompatible changes (Major release - new features and/or major changes)
33-
3433
```
3534

3635
For example:
@@ -56,3 +55,14 @@ It MAY include patch level changes. Patch version MUST be reset to 0 when minor
5655
Major version **X** MUST be incremented for a release that introduces backward incompatible changes.
5756
A major release can also include minor and patch level changes.
5857
You must reset the patch and minor version to 0 when you change the major version.
58+
59+
## Magento 2 compatibility
60+
61+
This table lists the version of the MFTF that was released with a particular version of Magento.
62+
63+
|Magento version| MFTF version|
64+
|---|---|
65+
| 2.3.1 | 2.3.13 |
66+
| 2.3.0 | 2.3.9 |
67+
| 2.2.8 | 2.3.13 |
68+
| 2.2.7 | 2.3.8 |

0 commit comments

Comments
 (0)