You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just found this package and it seems like a very nice one. I decided to test it out since currently a lot of my time goes to waiting for tests to pass. I think this package seems very good.
However, I ran into a problem. The package seems to assume a certain format for the result id from aws requests which, at least for my code, does not hold. I get a IndexError: list index out of range error on line this line code = request.uri.split("/results/")[1].split("/")[0] of the def _process_request_recording(request): function of snowflake_vcrpy_pytest_plugin.py (link to line). I was able to simply comment out that line and the one that depends on it to get everything running (no clue what the implications are).
The request.uristring is https://00000000-0000-0000-0000-000000000000.amazonaws.com/?accelerate
Edit: This seems to have been introduced in the latest commit to the package
The text was updated successfully, but these errors were encountered:
Hey,
I just found this package and it seems like a very nice one. I decided to test it out since currently a lot of my time goes to waiting for tests to pass. I think this package seems very good.
However, I ran into a problem. The package seems to assume a certain format for the result id from
aws requests
which, at least for my code, does not hold. I get aIndexError: list index out of range
error on line this linecode = request.uri.split("/results/")[1].split("/")[0]
of thedef _process_request_recording(request):
function ofsnowflake_vcrpy_pytest_plugin.py
(link to line). I was able to simply comment out that line and the one that depends on it to get everything running (no clue what the implications are).The
request.uri
string ishttps://00000000-0000-0000-0000-000000000000.amazonaws.com/?accelerate
Edit: This seems to have been introduced in the latest commit to the package
The text was updated successfully, but these errors were encountered: