-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
After initial fetch, save potentially-redirected url #9040
Conversation
Regarding tests: The only meaningful test I can imagine is a network test like
This takes 1-2 seconds. Not sure if we want that or rather do without a test. |
c515344
to
95c3981
Compare
95c3981
to
ba82891
Compare
@thatch please run the following locally to get the failing pre-commit job passing.
|
We can modify the test at https://github.com/python-poetry/poetry/pull/9051/files#diff-d86ccfe236884d03286aee144a8a8dcb2016aa497261e05d81da2a7a1101ade6R406-R419 to account for this. def test_metadata_from_wheel_url_with_redirect_after_500(
assert_metadata_from_wheel_url: AssertMetadataFromWheelUrl,
) -> None:
assert_metadata_from_wheel_url(
negative_offset_error=(codes.internal_server_error, b"Internal server error"),
expected_requests=10,
redirect=True,
) |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Pull Request Check List
This is a draft -- no tests or relnotes. But appears to fix the issue in our environment.
Resolves: #9039