PHPUnit: ignore specific directory in testSuite -
i'm trying test directories except 1 in specific folder. current tree:
app/code/my/module/test/sometest.php app/code/magento/admin/test/sometest.php app/code/other/module/test/anothertest.php
i need run tests inside app/code/magento
directory. i've tried far:
<testsuite name="modules tests"> <directory suffix=".php">app/code/*/*/test</directory> <exclude>app/code/magento</exclude> </testsuite>
even using exclude absolute path or wildcard app/code/magento/*
, keep being added testsuite. tried blacklist, seems ignored well.
i'm using phpunit 4.6.4.
any advice here?
thanks!
Comments
Post a Comment