Skip to content

Commit 9efeb3c

Browse files
authored
Moved HHVM builds to Wercker CI (#3809)
* enabled wercker HHVM builds * added unit core tests * triggering tests once again * fixed removing composer.lock even if it is not present * disable linting inside hhvm * we don't need need to lint our internal tests. At least we know how to handle syntax errors in PHP tests... * fixed starting hhvm server disabled linting for most of cli tests * fixed running cli suite * removed parser Cept tests (is not a unit test, config dependent) fixed @amqp test * mysql, redis, postgresql tests added to wercker * reverted -U postgres in travis db tests
1 parent 65c6bbf commit 9efeb3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/Codeception/Module/AMQPTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function setUp()
2323
{
2424
$this->module = new \Codeception\Module\AMQP(make_container());
2525
$this->module->_setConfig($this->config);
26-
$res = stream_socket_client('tcp://localhost:5672');
26+
$res = @stream_socket_client('tcp://localhost:5672');
2727
if ($res === false) {
2828
$this->markTestSkipped('AMQP is not running');
2929
}

0 commit comments

Comments
 (0)