Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ matrix:
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
- php: hhvm
dist: trusty

before_install:
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": ">=5.4",
"php": "^5.4 || ^7.0",
"psr/http-message": "^1.0",
"php-http/message-factory": "^1.0.2",
"clue/stream-filter": "^1.4"
Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/ChunkStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class ChunkStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as there is no dechunk filter on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/CompressStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class CompressStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as zlib is not working on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/DechunkStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class DechunkStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as there is no dechunk filter on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/DecompressStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class DecompressStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as zlib is not working on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/GzipDecodeStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class GzipDecodeStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as zlib is not working on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down
4 changes: 0 additions & 4 deletions spec/Encoding/GzipEncodeStreamSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ class GzipEncodeStreamSpec extends ObjectBehavior

function let(StreamInterface $stream)
{
if (defined('HHVM_VERSION')) {
throw new SkippingException('Skipping test as zlib is not working on hhvm');
}

$this->beConstructedWith($stream);
}

Expand Down