-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
requests.RequestTests fails trying to contact https://httpbin.org (200USD Bounty) #132
Comments
the Dotty folks also experienced this and pulled the tests from their community build: scala/scala3#17199 |
for now, I did scala/community-build@e86a969 |
I made some first simple steps at solving this issue, and I would appreciate your feedback if this is the right approach. This is the code https://github.com/rvangsgaard/requests-scala/tree/132-switch-from-remote-httpbin-to-local-when-running-tests. Here is a link to a Gitter chat on the subject https://matrix.to/#/!zXvttAKLPnvdnmiYsY:matrix.am/$H-w8vMhK-Pav-UkQNNqcVIyR7e734Kaanjdn3jT-vOY?via=matrix.am&via=gitter.im&via=matrix.org. It is not clear and obvious to me how to extend and compose Tasks in Mill. |
Will you consider testcontainers as a test dependency in the build? |
sure i think testcontainets is fine |
The tests already have a local server that's used a little, perhaps it's better to just extend that |
Fix com-lihaoyi#132 Start a local httpbin container to run tests against. Https requests are still using remote one since it's hard to setup local secure ssl. The requests using https are simple and during my tests I haven't seen any timeout.
The local server is just an echo server which cannot support most of the test cases. I created a PR to use httpbin with testcontainers : #175 |
in the Scala 2 community build we lack the capability to run Docker-based tests, so I have to leave the test disabled. so oh well — regardless, it's good this was fixed for others! not sure about Scala 3 |
No worries, there should be plenty of other reos for you to test! I dont think this one does anything special |
From the maintainer Li Haoyi: I'm putting a 200USD bounty on this issue, payable by bank transfer on a merged PR resolving this issue. The solution to this is to download a version of httpbin locally and run it as part of the test setup, both in CI and during manual development, and ensuring all tests pass
I've seen this in the Scala 2 community build and it's also reproducible locally
The text was updated successfully, but these errors were encountered: