Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-22 00:33:36 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-22 00:33:36 +0400
commit0d2c4ce7e25cf6183a1de42dae308f743cf3af50 (patch)
tree715d065ecaffc7dacff18f53baf8a90f4fc44349 /tests/PHPUnit/Core
parent692ecd885d42be2281c421df8b9659aedaacb046 (diff)
Exclude vendor/ from ReleaseCheckList <?php test and remove setupProfilerXHProf that are no longer necessary.
Diffstat (limited to 'tests/PHPUnit/Core')
-rw-r--r--tests/PHPUnit/Core/ReleaseCheckListTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PHPUnit/Core/ReleaseCheckListTest.php b/tests/PHPUnit/Core/ReleaseCheckListTest.php
index 8177a63e36..d55b9453a7 100644
--- a/tests/PHPUnit/Core/ReleaseCheckListTest.php
+++ b/tests/PHPUnit/Core/ReleaseCheckListTest.php
@@ -370,7 +370,8 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
$isTestResultFile = strpos($file, "/Integration/expected") !== false
|| strpos($file, "/Integration/processed") !== false
|| strpos($file, "tests/resources/Updater/") !== false
- || strpos($file, "Twig/Tests/") !== false;
+ || strpos($file, "Twig/Tests/") !== false
+ || strpos($file, "/vendor/") !== false;
$isLib = strpos($file, "lib/xhprof") !== false || strpos($file, "phpunit/phpunit") !== false;
return ($isIniFile && $isIniFileInTests) || $isTestResultFile || $isLib;