Skip to content

Commit 14b4b07

Browse files
authored
Merge pull request #462 from clue-labs/async
Update test suite to use new reactphp/async package instead of clue/reactphp-block
2 parents 9ba40e6 + 342c5e1 commit 14b4b07

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,16 @@
1111
"php": ">=5.3.8",
1212
"react/async": "^4 || ^3 || ^2",
1313
"react/cache": "^1.1",
14-
"react/dns": "^1.9",
14+
"react/dns": "^1.10",
1515
"react/event-loop": "^1.3",
16-
"react/http": "^1.6",
16+
"react/http": "^1.7",
1717
"react/promise": "^2.9 || ^1.2",
18-
"react/promise-stream": "^1.3",
18+
"react/promise-stream": "^1.5",
1919
"react/promise-timer": "^1.8",
20-
"react/socket": "^1.11",
20+
"react/socket": "^1.12",
2121
"react/stream": "^1.2"
2222
},
2323
"require-dev": {
24-
"clue/block-react": "^1.5",
2524
"clue/stream-filter": "^1.3",
2625
"phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
2726
},

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
convertDeprecationsToExceptions="true">
1010
<testsuites>
1111
<testsuite name="ReactPHP Test Suite">
12+
<!-- explicitly run EventLoop tests first to avoid resetting default loop -->
13+
<directory>./vendor/react/event-loop/tests/</directory>
1214
<directory>./vendor/react/*/tests/</directory>
13-
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/http/pull/440 -->
14-
<exclude>./vendor/react/http/tests/HttpServerTest.php</exclude>
1515
</testsuite>
1616
</testsuites>
1717
<coverage>

phpunit.xml.legacy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
<testsuites>
99
<testsuite name="ReactPHP Test Suite">
1010
<directory>./vendor/react/*/tests/</directory>
11-
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/http/pull/440 -->
12-
<exclude>./vendor/react/http/tests/HttpServerTest.php</exclude>
1311
</testsuite>
1412
</testsuites>
1513
<filter>

0 commit comments

Comments
 (0)