We will work on Apr 26th (Saturday) and will be off from Apr 30th (Wednesday) until May 2nd (Friday) for public holiday in our country

Commit 73b3fbff authored by Ivan Chepurnyi's avatar Ivan Chepurnyi

! Move phpunit.xml to distrubuted version, that will not override standart test configuration

parent 2fb65f5e
...@@ -15,7 +15,7 @@ fi ...@@ -15,7 +15,7 @@ fi
# Copy phpunit.xml if it doesn't already exist # Copy phpunit.xml if it doesn't already exist
@shell \ @shell \
PHPUNITXML=phpunit.xml; \ PHPUNITXML=phpunit.xml.dist; \
if [ ! -f $PROJECT/$LOCALXML ]; then \ if [ ! -f $PROJECT/$LOCALXML ]; then \
cp $MODULE/$PHPUNITXML $PROJECT/$PHPUNITXML; \ cp $MODULE/$PHPUNITXML $PROJECT/$PHPUNITXML; \
fi fi
...@@ -20,6 +20,12 @@ ...@@ -20,6 +20,12 @@
<blacklist> <blacklist>
<!-- Exclude Magento Core files from code coverage --> <!-- Exclude Magento Core files from code coverage -->
<directory suffix=".php">app/code/core</directory> <directory suffix=".php">app/code/core</directory>
<!-- Exclude EcomDev_PHPUnit classes from code coverage -->
<directory suffix=".php">app/code/community/EcomDev/PHPUnit</directory>
<directory suffix=".php">lib/EcomDev/Utils</directory>
<directory suffix=".php">lib/EcomDev/PHPUnit</directory>
<!-- Exclude Mage.php file from code coverage -->
<file>app/Mage.php</file>
<!-- Exclude template files --> <!-- Exclude template files -->
<directory suffix=".phtml">app/code/design</directory> <directory suffix=".phtml">app/code/design</directory>
<!-- Exclude Varien & Zend libraries --> <!-- Exclude Varien & Zend libraries -->
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment