diff --git a/static/integrity/testsuite/Magento/Test/Php/LiveCodeTest.php b/static/integrity/testsuite/Magento/Test/Php/LiveCodeTest.php index 03e7e09..e01c00a 100755 --- a/static/integrity/testsuite/Magento/Test/Php/LiveCodeTest.php +++ b/static/integrity/testsuite/Magento/Test/Php/LiveCodeTest.php @@ -307,6 +307,7 @@ public function testCodeStyle() $ignoreList[] = 'view'; $ignoreList[] = 'test-reports'; $ignoreList[] = 'Test'; + $ignoreList[] = 'Setup'; if ($ignoreList) { $ignoreListPattern = sprintf('#(%s)#i', implode('|', $ignoreList)); @@ -348,6 +349,8 @@ public function testCodeMess() $ignoreList[] = 'clover.xml'; $ignoreList[] = 'test-reports'; $ignoreList[] = 'Test'; + $ignoreList[] = 'Setup'; + if ($ignoreList) { $ignoreListPattern = sprintf('#(%s)#i', implode('|', $ignoreList)); $fileList = array_filter( @@ -401,6 +404,7 @@ public function testCopyPaste() $blackList[] = 'vendor'; $blackList[] = 'test-reports'; $blackList[] = 'Test'; + $ignoreList[] = 'Setup'; $blackList[] = 'clover.xml'; $copyPasteDetector->setBlackList($blackList); @@ -486,6 +490,7 @@ public function testPhpStan() $blackList[] = 'vendor'; $blackList[] = 'test-reports'; $blackList[] = 'Test'; + $ignoreList[] = 'Setup'; $blackList[] = 'clover.xml'; if ($blackList) { $blackListPattern = sprintf('#(%s)#i', implode('|', $blackList));