mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15919] Don't run lint test against node_modules
Also, make sure to correctly handle opendir returning false instead of the stream handle. PHPBB3-15919
This commit is contained in:
parent
70a56c208f
commit
14f9917db6
1 changed files with 7 additions and 0 deletions
|
@ -67,6 +67,12 @@ class phpbb_lint_test extends phpbb_test_case
|
||||||
{
|
{
|
||||||
$files = array();
|
$files = array();
|
||||||
$dh = opendir($root);
|
$dh = opendir($root);
|
||||||
|
|
||||||
|
if ($dh === false)
|
||||||
|
{
|
||||||
|
return $files;
|
||||||
|
}
|
||||||
|
|
||||||
while (($filename = readdir($dh)) !== false)
|
while (($filename = readdir($dh)) !== false)
|
||||||
{
|
{
|
||||||
if ($filename == '.' || $filename == '..')
|
if ($filename == '.' || $filename == '..')
|
||||||
|
@ -89,6 +95,7 @@ class phpbb_lint_test extends phpbb_test_case
|
||||||
// PHP Fatal error: Cannot declare class Container because the name is already in use in /var/www/projects/phpbb3/tests/../phpBB/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php on line 20
|
// PHP Fatal error: Cannot declare class Container because the name is already in use in /var/www/projects/phpbb3/tests/../phpBB/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php on line 20
|
||||||
// https://gist.github.com/e003913ffd493da63cbc
|
// https://gist.github.com/e003913ffd493da63cbc
|
||||||
dirname(__FILE__) . '/../phpBB/vendor',
|
dirname(__FILE__) . '/../phpBB/vendor',
|
||||||
|
dirname(__FILE__) . '/../node_modules',
|
||||||
)))
|
)))
|
||||||
{
|
{
|
||||||
$files = array_merge($files, $this->check($path));
|
$files = array_merge($files, $this->check($path));
|
||||||
|
|
Loading…
Add table
Reference in a new issue