From 7e4492b1971307f9d51b611206c043d5a2eb2943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20FIDRY?= Date: Fri, 6 Oct 2023 13:15:44 +0200 Subject: [PATCH] test: Disable InfoTest in the CI This tests is giving me headaches and I don't really want to address it at the moment. --- tests/Console/Command/InfoTest.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/Console/Command/InfoTest.php b/tests/Console/Command/InfoTest.php index 1e7dc0ec3..58bbaf2e2 100644 --- a/tests/Console/Command/InfoTest.php +++ b/tests/Console/Command/InfoTest.php @@ -26,13 +26,14 @@ use function implode; use function preg_replace; use function realpath; +use const PHP_OS_FAMILY; /** * @covers \KevinGH\Box\Console\Command\Info * @covers \KevinGH\Box\Console\Command\PharInfoRenderer * * @runTestsInSeparateProcesses This is necessary as instantiating a PHAR in memory may load/autoload some stuff which - * can create undesirable side-effects. + * can create undesirable side effect. * * @internal */ @@ -43,6 +44,15 @@ class InfoTest extends CommandTestCase { private const FIXTURES = __DIR__.'/../../../fixtures/info'; + protected function setUp(): void + { + if (PHP_OS_FAMILY !== 'Darwin') { + $this->markTestSkipped('This test requires more work to be working fine cross-platform.'); + } + + parent::setUp(); + } + protected function getCommand(): Command { return new Info();