From 87741333b26f57ea2e9059df1c9bd6da688a955d Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Tue, 2 Apr 2024 13:32:20 -0700 Subject: [PATCH] exclude test on windows --- .../phpunit/src/Commands/Remote/AliasesDownloadCommandTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/phpunit/src/Commands/Remote/AliasesDownloadCommandTest.php b/tests/phpunit/src/Commands/Remote/AliasesDownloadCommandTest.php index b446190e5..78eb58c9f 100644 --- a/tests/phpunit/src/Commands/Remote/AliasesDownloadCommandTest.php +++ b/tests/phpunit/src/Commands/Remote/AliasesDownloadCommandTest.php @@ -85,6 +85,9 @@ public function testRemoteAliasesDownloadCommand(array $inputs, array $args, str $this->assertStringContainsString('Cloud Platform Drush aliases installed into ' . $destinationDir, $output); } + /** + * @requires OS linux|darwin + */ public function testRemoteAliasesDownloadFailed(): void { $drushAliasesFixture = Path::canonicalize(__DIR__ . '/../../../../fixtures/drush-aliases'); $drushAliasesTarballFixtureFilepath = tempnam(sys_get_temp_dir(), 'AcquiaDrushAliases');