We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VCRPY does not record http version in cassete and is incapable of replaying it
following code fails running 2nd time (from cassete)
#using pytest-asyncio==0.24.0 from httpx import HttpxAsyncClient import vcr @pytest.mark.parametrize("http2, expected", [(True, "HTTP/2"), (False, "HTTP/1.1")]) async def test_http_version(http2, expected, master_key): with vcr.use_cassette(f"tests/vcr_cassettes/{expected}.yaml"): async with HttpxAsyncClient("https://edge.meilisearch.com", "master key", http2=http2) as client: response = await client.http_client.get("health") assert response.http_version == expected
this is unexpected
however i am aware it may not be possible to be done
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VCRPY does not record http version in cassete and is incapable of replaying it
following code fails running 2nd time (from cassete)
this is unexpected
however i am aware it may not be possible to be done
The text was updated successfully, but these errors were encountered: