Skip to content

Commit 63b7e36

Browse files
authored
Merge branch 'develop' into imported-magento-magento2-functional-testing-framework-816
2 parents f0966d0 + 1eafa70 commit 63b7e36

File tree

24 files changed

+1072
-311
lines changed

24 files changed

+1072
-311
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
php-version: ${{ matrix.php-versions }}
2323
extensions: curl, dom, intl, json, openssl
24+
coverage: xdebug
2425

2526
- name: Cache Composer packages
2627
id: composer-cache
@@ -40,7 +41,7 @@ jobs:
4041

4142
- name: Monitor coverage
4243
if: github.event_name == 'pull_request'
43-
uses: slavcodev/coverage-monitor-action@1.1.0
44+
uses: slavcodev/coverage-monitor-action@1.2.0
4445
with:
4546
github_token: ${{ secrets.GITHUB_TOKEN }}
4647
clover_file: "clover.xml"

CHANGELOG.md

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

4+
3.4.0
5+
---------
6+
7+
### Enhancements
8+
9+
* Maintainability
10+
* Added support for composer 2.
11+
12+
3.3.0
13+
---------
14+
15+
### Enhancements
16+
17+
* Usability
18+
* [#817](https://github.com/magento/magento2-functional-testing-framework/pull/817) -- Add support for admin WebAPI token refresh
19+
20+
* Maintainability
21+
* [#814](https://github.com/magento/magento2-functional-testing-framework/pull/814) -- Update dependencies in order to make mftf php8 compatible, fix running phpcpd
22+
* [#815](https://github.com/magento/magento2-functional-testing-framework/pull/815) -- Upgrade csharpru/vault-php to 4.1
23+
24+
### Fixes
25+
26+
* Fixed test generation error in a split suite group (--config=parallel) to allow generation of subsequent groups.
27+
* Fixed an issue where test extends from a skipped parent is not properly skipped.
28+
429
3.2.1
530
---------
631

composer.json

Lines changed: 2 additions & 2 deletions
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": "3.2.1",
5+
"version": "3.4.0",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {
@@ -21,7 +21,7 @@
2121
"codeception/module-asserts": "^1.1",
2222
"codeception/module-sequence": "^1.0",
2323
"codeception/module-webdriver": "^1.0",
24-
"composer/composer": "^1.9",
24+
"composer/composer": "^1.9||^2.0",
2525
"csharpru/vault-php": "^4.1.0",
2626
"csharpru/vault-php-guzzle6-transport": "^2.0",
2727
"hoa/console": "~3.0",

0 commit comments

Comments
 (0)