Looks like the httpx target in the Networks group in CI is also testing httpx2.
Open httpx here, for instance: https://github.com/getsentry/sentry-python/actions/runs/31385230658/job/93444058506 It only contains httpx2 runs. Both httpx and httpx2 are run in the httpx group (I assume because we do/tox does some prefix matching). In Python 3.14, specifically, there are no httpx versions to run the tests against, so we only run them against httpx2.
This is not a big deal, but we could check whether we can isolate the test suites.
Looks like the
httpxtarget in the Networks group in CI is also testing httpx2.Open
httpxhere, for instance: https://github.com/getsentry/sentry-python/actions/runs/31385230658/job/93444058506 It only contains httpx2 runs. Both httpx and httpx2 are run in the httpx group (I assume because we do/tox does some prefix matching). In Python 3.14, specifically, there are no httpx versions to run the tests against, so we only run them against httpx2.This is not a big deal, but we could check whether we can isolate the test suites.