commit
9950802466
|
@ -8,10 +8,6 @@ php:
|
||||||
- 5.6
|
- 5.6
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
matrix:
|
|
||||||
allow_failures:
|
|
||||||
- php: hhvm
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- sudo apt-get install parallel
|
- sudo apt-get install parallel
|
||||||
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
|
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
|
||||||
|
|
|
@ -60,6 +60,10 @@ class AllFunctionalTest extends \PHPUnit_Framework_TestCase
|
||||||
|
|
||||||
public function testBuildPhar()
|
public function testBuildPhar()
|
||||||
{
|
{
|
||||||
|
if (defined('HHVM_VERSION')) {
|
||||||
|
$this->markTestSkipped('Building the phar does not work on HHVM.');
|
||||||
|
}
|
||||||
|
|
||||||
$fs = new Filesystem;
|
$fs = new Filesystem;
|
||||||
$fs->removeDirectory(dirname(self::$pharPath));
|
$fs->removeDirectory(dirname(self::$pharPath));
|
||||||
$fs->ensureDirectoryExists(dirname(self::$pharPath));
|
$fs->ensureDirectoryExists(dirname(self::$pharPath));
|
||||||
|
|
Loading…
Reference in New Issue