From df9721d21b3a1600d9c68d2b804ab20e8b57bc75 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 11 May 2022 16:52:58 +0200 Subject: [PATCH] Skip broken test on windows --- tests/Composer/Test/ApplicationTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Composer/Test/ApplicationTest.php b/tests/Composer/Test/ApplicationTest.php index f30374b2d..7588e830b 100644 --- a/tests/Composer/Test/ApplicationTest.php +++ b/tests/Composer/Test/ApplicationTest.php @@ -59,6 +59,10 @@ class ApplicationTest extends TestCase */ public function testDevWarningSuppressedForSelfUpdate(): void { + if (Platform::isWindows()) { + $this->markTestSkipped('Does not run on windows'); + } + $application = new Application; $application->add(new \Composer\Command\SelfUpdateCommand);