Skip to content

Commit fa7a952

Browse files
committed
minor #598 Exclude some tests on Windows too (javiereguiluz)
This PR was merged into the master branch. Discussion ---------- Exclude some tests on Windows too This continues #597 according to @stof comment: #597 (comment) Commits ------- 515d490 Exclude some tests on Windows too
2 parents 71d434c + 515d490 commit fa7a952

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/AppBundle/Command/AddUserCommandTest.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ class AddUserCommandTest extends KernelTestCase
2828

2929
protected function setUp()
3030
{
31-
// check if stty is supported, because it's needed for questions with hidden answers
3231
exec('stty 2>&1', $output, $exitcode);
32+
$isSttySupported = 0 === $exitcode;
3333

34-
if (0 !== $exitcode) {
35-
$this->markTestSkipped('`stty` is required to test commands.');
34+
$isWindows = '\\' === DIRECTORY_SEPARATOR;
35+
36+
if ($isWindows || !$isSttySupported) {
37+
$this->markTestSkipped('`stty` is required to test this command.');
3638
}
3739
}
3840

0 commit comments

Comments
 (0)