Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test suite to use new reactphp/async package instead of clue/reactphp-block #462

Merged
merged 1 commit into from Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 4 additions & 5 deletions composer.json
Expand Up @@ -11,17 +11,16 @@
"php": ">=5.3.8",
"react/async": "^4 || ^3 || ^2",
"react/cache": "^1.1",
"react/dns": "^1.9",
"react/dns": "^1.10",
"react/event-loop": "^1.3",
"react/http": "^1.6",
"react/http": "^1.7",
"react/promise": "^2.9 || ^1.2",
"react/promise-stream": "^1.3",
"react/promise-stream": "^1.5",
"react/promise-timer": "^1.8",
"react/socket": "^1.11",
"react/socket": "^1.12",
"react/stream": "^1.2"
},
"require-dev": {
"clue/block-react": "^1.5",
"clue/stream-filter": "^1.3",
"phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
},
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Expand Up @@ -9,9 +9,9 @@
convertDeprecationsToExceptions="true">
<testsuites>
<testsuite name="ReactPHP Test Suite">
<!-- explicitly run EventLoop tests first to avoid resetting default loop -->
<directory>./vendor/react/event-loop/tests/</directory>
<directory>./vendor/react/*/tests/</directory>
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/http/pull/440 -->
<exclude>./vendor/react/http/tests/HttpServerTest.php</exclude>
</testsuite>
</testsuites>
<coverage>
Expand Down
2 changes: 0 additions & 2 deletions phpunit.xml.legacy
Expand Up @@ -8,8 +8,6 @@
<testsuites>
<testsuite name="ReactPHP Test Suite">
<directory>./vendor/react/*/tests/</directory>
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/http/pull/440 -->
<exclude>./vendor/react/http/tests/HttpServerTest.php</exclude>
</testsuite>
</testsuites>
<filter>
Expand Down