1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Mon, 4 Nov 2024 10:40:23 +0100
Subject: Skip test relying on sourceless Window binaries
Forwarded: not-needed
---
tests/Driver/BinaryProviderTestTrait.php | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/Driver/BinaryProviderTestTrait.php b/tests/Driver/BinaryProviderTestTrait.php
index 72d5e15..a73beb7 100644
--- a/tests/Driver/BinaryProviderTestTrait.php
+++ b/tests/Driver/BinaryProviderTestTrait.php
@@ -20,6 +20,8 @@ trait BinaryProviderTestTrait
{
public function testRootDirectoryExists()
{
+ $this->markTestSkipped('Sourceless Window binaries are stripped away');
+
/** @var BinaryProviderInterface $driver */
$driver = $this->getDriver();
@@ -28,6 +30,8 @@ trait BinaryProviderTestTrait
public function testEmbeddedBinaryExists()
{
+ $this->markTestSkipped('Sourceless Window binaries are stripped away');
+
/** @var BinaryProviderInterface $driver */
$driver = $this->getDriver();
@@ -36,6 +40,8 @@ trait BinaryProviderTestTrait
public function testExtraFilesExist()
{
+ $this->markTestSkipped('Sourceless Window binaries are stripped away');
+
/** @var BinaryProviderInterface $driver */
$driver = $this->getDriver();
|