Skip to content

Commit 141773c

Browse files
committed
.
1 parent 8dfc7c5 commit 141773c

4 files changed

Lines changed: 83 additions & 82 deletions

File tree

scripts/populate_tox/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
"httpx2": {
206206
"package": "httpx2",
207207
"deps": {
208-
"*": ["anyio>=3,<5"],
208+
"*": ["anyio>=3,<5", "pytest-httpx"],
209209
},
210210
},
211211
"huey": {

tests/integrations/httpx2/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import pytest
55

6-
pytest.importorskip("httpx")
6+
pytest.importorskip("httpx2")
77

8-
# Load `httpx_helpers` into the module search path to test request source path names relative to module. See
8+
# Load `httpx2_helpers` into the module search path to test request source path names relative to module. See
99
# `test_request_source_with_module_in_search_path`
1010
sys.path.insert(0, os.path.join(os.path.dirname(__file__)))

0 commit comments

Comments
 (0)