We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8801e2 commit 487980cCopy full SHA for 487980c
tests/SPC/util/ConfigValidatorTest.php
@@ -50,7 +50,6 @@ public function testValidateSourceGood(): void
50
'filename' => 'test.tar.gz',
51
'path' => 'test/path',
52
'provide-pre-built' => true,
53
- 'prefer-stable' => false,
54
'license' => [
55
'type' => 'file',
56
'path' => 'LICENSE',
tests/SPC/util/SPCConfigUtilTest.php
@@ -44,6 +44,9 @@ public function testConstruct(): void
44
45
public function testConfig(): void
46
{
47
+ if (PHP_OS_FAMILY !== 'Linux') {
48
+ $this->markTestSkipped('SPCConfigUtil tests are only applicable on Linux.');
49
+ }
// normal
$result = (new SPCConfigUtil())->config(['bcmath']);
$this->assertStringContainsString(BUILD_ROOT_PATH . '/include', $result['cflags']);
0 commit comments