8000 minor #47482 skip a transient test on AppVeyor (xabbuh) · symfony/symfony@1d75f4e · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d75f4e

Browse files
committed
minor #47482 skip a transient test on AppVeyor (xabbuh)
This PR was merged into the 4.4 branch. Discussion ---------- skip a transient test on AppVeyor | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Commits ------- d5e624c skip a transient test on AppVeyor
2 parents fd0d5b5 + d5e624c commit 1d75f4e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Symfony/Component/VarDumper/Tests/Dumper/ServerDumperTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ public function testDumpForwardsToWrappedDumperWhenServerIsUnavailable()
3939

4040
public function testDump()
4141
{
42+
if ('True' === getenv('APPVEYOR')) {
43+
$this->markTestSkipped('Skip transient test on AppVeyor');
44+
}
45+
4246
$wrappedDumper = $this->createMock(DataDumperInterface::class);
4347
$wrappedDumper->expects($this->never())->method('dump'); // test wrapped dumper is not used
4448

0 commit comments

Comments
 (0)
0