Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 7020c5f

Browse files
committed
wip
1 parent 04c5434 commit 7020c5f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.travis.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@ php:
55
- 7.2
66
- 7.3
77

8-
env:
9-
matrix:
10-
- COMPOSER_FLAGS="--prefer-lowest"
11-
- COMPOSER_FLAGS=""
12-
138
before_script:
149
- travis_retry composer self-update
15-
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
10+
- travis_retry composer update --no-interaction
1611

1712
script:
1813
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover

tests/ConnectionTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public function testDump()
2424
$process->start(function ($type, $buffer) use ($process, &$dumped, $connection) {
2525
if (Process::ERR === $type) {
2626
$process->stop();
27-
dd($buffer);
2827
$this->fail();
2928
} elseif ("READY\n" === $buffer) {
3029
usleep(5000);

0 commit comments

Comments
 (0)