1
0
Fork 0

Skip broken test on windows

pull/10769/head
Jordi Boggiano 2022-05-11 16:52:58 +02:00
parent fb486b43e4
commit df9721d21b
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 4 additions and 0 deletions

View File

@ -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);