10000 skip a transient test on Windows · symfony/symfony@fcfcba1 · GitHub
[go: up one dir, main page]

Skip to content

Commit fcfcba1

Browse files
committed
skip a transient test on Windows
1 parent 5dfb353 commit fcfcba1

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