Browse Source

Skip ConsoleInput tests on Windows/AppVeyor.

ADmad 7 years ago
parent
commit
03f60e83fa
1 changed files with 5 additions and 0 deletions
  1. 5 0
      tests/TestCase/Console/ConsoleInputTest.php

+ 5 - 0
tests/TestCase/Console/ConsoleInputTest.php

@@ -41,6 +41,11 @@ class ConsoleInputTest extends TestCase
      */
     public function testDataAvailable()
     {
+        $this->skipIf(
+            DS === '\\',
+            'Skip ConsoleInput tests on Windows as they fail on AppVeyor.'
+        );
+
         $this->assertFalse($this->in->dataAvailable());
     }
 }