-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to reconcile magento/mtf updates and PHPUnit updates.
- Loading branch information
1 parent
6eee8a0
commit 8ff94e7
Showing
267 changed files
with
3,277 additions
and
1,796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Magento Functional Tests | ||
|
||
This suite of tests is based on the abandoned magento/mtf project. | ||
|
||
## Install | ||
|
||
First, install dependencies using composer: | ||
|
||
```sh | ||
docker run --rm -it \ | ||
--volume $PWD:/app --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp \ | ||
--user $(id -u):$(id -g) \ | ||
composer --ignore-platform-reqs install | ||
``` | ||
|
||
Run tests: | ||
|
||
```sh | ||
docker run --rm -it \ | ||
--volume $(realpath $PWD/../../../):/app --workdir /app \ | ||
php:7.2 \ | ||
dev/tests/functional/vendor/phpunit/phpunit/phpunit -c dev/tests/functional \ | ||
dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php | ||
``` |
Oops, something went wrong.