Skip to content

Commit

Permalink
Add back troubleshooting:check-all step.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmollenhour authored and tmotyl committed May 18, 2020
1 parent 5095481 commit 6ac2ed3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand Down
11 changes: 11 additions & 0 deletions dev/tests/functional/utils/mtf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env php
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

$mtfRoot = dirname(__DIR__);
$mtfRoot = str_replace('\\', '/', $mtfRoot);
define('MTF_PHPUNIT_FILE', $mtfRoot . DIRECTORY_SEPARATOR . 'phpunit.xml');
include $mtfRoot . '/vendor/magento/mtf/utils/mtf';
4 changes: 3 additions & 1 deletion dev/travis/before_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ case $TEST_SUITE in
cp ./phpunit.xml.dist ./phpunit.xml
sed -e "s?127.0.0.1?${MAGENTO_HOST_NAME}?g" --in-place ./phpunit.xml
sed -e "s?basic?travis_acceptance?g" --in-place ./phpunit.xml
cd ./utils
php -f mtf troubleshooting:check-all

cd ../..
cd ../../..
;;
esac

0 comments on commit 6ac2ed3

Please sign in to comment.