-
Notifications
You must be signed in to change notification settings - Fork 260
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
CI #508
CI #508
Conversation
Tests: 258, Assertions: 2278, Failures: 3, Errors: 6. 1 test commented
6eba821
to
bcceb81
Compare
bcceb81
to
c897efe
Compare
7e1a8c1
to
11c938c
Compare
f71062a
to
f5428c6
Compare
@@ -1,6 +1,9 @@ | |||
<?php | |||
|
|||
// TODO: Don't fail using deprecated code | |||
// error_reporting(E_ALL ^ E_DEPRECATED); | |||
error_reporting(- 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will allow the use of deprecated code, at least as a milestone, but if I do that now the tests keep going and breaks the whole test execution, so I'll do that separately.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 👍
@@ -36,7 +36,7 @@ public function testExceptionsRetry($exception, $success) | |||
} | |||
]; | |||
$client = $this->mockApiResponses([ | |||
new $exception('', new Request('GET', '')), | |||
new $exception('', new Request('GET', ''), new Response()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
🥳 |
This is a decent milestone and a good time to split the work. Usually I don't leave
TODOs
in PRs but I will follow up with another PR to solve those issues.There's more than 6 tests to fix, the tough ones, but less than a dozen.