Skip to content

Commit 00cf35e

Browse files
Merge pull request #10 from python-discord/dependabot/pip/httpx-0.23.0
chore(deps-dev): bump httpx from 0.18.2 to 0.23.0
2 parents 32529c3 + 82097e9 commit 00cf35e

File tree

3 files changed

+27
-18
lines changed

3 files changed

+27
-18
lines changed

poetry.lock

Lines changed: 25 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ flake8 = "^3.9.2"
2020
pytest = "^6.2.4"
2121
pytest-asyncio = "^0.15.1"
2222
hypothesis = "^6.14.0"
23-
httpx = "^0.18.1"
23+
httpx = "^0.23.0"
2424
pytest-cov = "^2.12.1"
2525
coveralls = "^3.1.0"
2626
taskipy = "^1.8.1"

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ def app(override_db_session: Callable) -> FastAPI:
6969
@pytest.fixture()
7070
async def client(app: FastAPI) -> AsyncClient:
7171
"""Return a client for testing the app."""
72-
async with AsyncClient(app=app, base_url='http://testserver') as ac:
72+
async with AsyncClient(app=app, base_url='http://testserver', follow_redirects=True) as ac:
7373
yield ac

0 commit comments

Comments
 (0)