Browse Source

Travis - extend additional files list

Dariusz Ruminski 7 years ago
parent
commit
1ae0ca5aba
2 changed files with 7 additions and 2 deletions
  1. 5 0
      .travis.yml
  2. 2 2
      tests/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixerTest.php

+ 5 - 0
.travis.yml

@@ -45,6 +45,11 @@ jobs:
                     | grep -v tests/Test/AbstractIntegrationTestCase.php \
                     | grep -v tests/Test/AbstractIntegrationTestCase.php \
                     | grep -v tests/Test/Assert/AssertTokensTrait.php \
                     | grep -v tests/Test/Assert/AssertTokensTrait.php \
                     | grep -v tests/Test/Constraint/SameStringsConstraint.php \
                     | grep -v tests/Test/Constraint/SameStringsConstraint.php \
+                    | grep -v tests/Test/Constraint/SameStringsConstraintForV5.php \
+                    | grep -v tests/Test/Constraint/SameStringsConstraintForV7.php \
+                    | grep -v tests/Test/Constraint/XmlMatchesXsdConstraint.php \
+                    | grep -v tests/Test/Constraint/XmlMatchesXsdConstraintForV5.php \
+                    | grep -v tests/Test/Constraint/XmlMatchesXsdConstraintForV7.php \
                     | grep -v tests/Test/IntegrationCase.php \
                     | grep -v tests/Test/IntegrationCase.php \
                     | grep -v tests/Test/IntegrationCaseFactory.php \
                     | grep -v tests/Test/IntegrationCaseFactory.php \
                     | grep -v tests/Test/IntegrationCaseFactoryInterface.php \
                     | grep -v tests/Test/IntegrationCaseFactoryInterface.php \

+ 2 - 2
tests/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixerTest.php

@@ -183,7 +183,7 @@ class FixerTest extends \PhpUnit\FrameWork\TestCase
 ',
 ',
             ],
             ],
             'It works even with messy comments' => [
             'It works even with messy comments' => [
-                    '<?php
+                '<?php
 class FixerTest extends \PhpUnit\FrameWork\TestCase
 class FixerTest extends \PhpUnit\FrameWork\TestCase
 {
 {
     protected /** foo */ function setUp() {}
     protected /** foo */ function setUp() {}
@@ -191,7 +191,7 @@ class FixerTest extends \PhpUnit\FrameWork\TestCase
     /** foo */protected function tearDown() {}
     /** foo */protected function tearDown() {}
 }
 }
 ',
 ',
-                    '<?php
+                '<?php
 class FixerTest extends \PhpUnit\FrameWork\TestCase
 class FixerTest extends \PhpUnit\FrameWork\TestCase
 {
 {
     public /** foo */ function setUp() {}
     public /** foo */ function setUp() {}