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 19dc500 commit 70ff3c8Copy full SHA for 70ff3c8
tests/FactoryTest.php
@@ -21,6 +21,10 @@ public function testCreate(){
21
}
22
public function testSuccessfulMulticastDns()
23
{
24
+ if (getenv('CI') === 'true') {
25
+ $this->markTestSkipped('Multicast networking not available on GitHub Actions.');
26
+ }
27
+
28
$mdnsMock = new MdnsServerMock(['test.local' => '192.168.1.20']);
29
$mdnsMock->start();
30
@@ -34,6 +38,10 @@ public function testSuccessfulMulticastDns()
34
38
35
39
public function testFailedMulticastDns()
36
40
41
42
43
44
37
45
46
47
0 commit comments