8000 minor #47465 [VarDumper] skip a transient test on Windows (xabbuh) · ausi/symfony@fd0d5b5 · GitHub
[go: up one dir, main page]

Skip to content

Commit fd0d5b5

Browse files
committed
minor symfony#47465 [VarDumper] skip a transient test on Windows (xabbuh)
This PR was merged into the 4.4 branch. Discussion ---------- [VarDumper] skip a transient test on Windows | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | symfony#45373 (comment) | License | MIT | Doc PR | Commits ------- fcfcba1 skip a transient test on Windows
2 parents 6648b82 + fcfcba1 commit fd0d5b5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Symfony/Component/VarDumper/Tests/Server/ConnectionTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ class ConnectionTest extends TestCase
2424

2525
public function testDump()
2626
{
27+
if ('True' === getenv('APPVEYOR')) {
28+
$this->markTestSkipped('Skip transient test on AppVeyor');
29+
}
30+
2731
$cloner = new VarCloner();
2832
$data = $cloner->cloneVar('foo');
2933
$connection = new Connection(self::VAR_DUMPER_SERVER, [

0 commit comments

Comments
 (0)
0