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 tried to run tests, but they failed due to missing httpx dependency.
Repro steps:
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -e .
$ pip install -r requirements.txt
$ pytest tests
ImportError while loading conftest '/home/maxim/github/fastapi-kafka/tests/conftest.py'.
tests/conftest.py:4: in <module>
from fastapi.testclient import TestClient
venv/lib/python3.12/site-packages/fastapi/testclient.py:1: in <module>
from starlette.testclient import TestClient as TestClient # noqa
venv/lib/python3.12/site-packages/starlette/testclient.py:35: in <module>
raise RuntimeError(
E RuntimeError: The starlette.testclient module requires the httpx package to be installed.
E You can install this with:
E $ pip install httpx
Hello! Thank you for the package!
I tried to run tests, but they failed due to missing
httpx
dependency.Repro steps:
System info:
The text was updated successfully, but these errors were encountered: