mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 06:46:15 +00:00
c0813a2d91
Previously, if someone made a request with `verify=False` then made a request where they expected verification to be enabled to the same host, they would potentially reuse a connection where TLS had not been verified. This fixes that issue.
19 lines
283 B
INI
19 lines
283 B
INI
[tox]
|
|
envlist = py{38,39,310,311,312}-{default, use_chardet_on_py3}
|
|
|
|
[testenv]
|
|
deps = -rrequirements-dev.txt
|
|
extras =
|
|
security
|
|
socks
|
|
commands =
|
|
pytest {posargs:tests}
|
|
|
|
[testenv:default]
|
|
|
|
[testenv:use_chardet_on_py3]
|
|
extras =
|
|
security
|
|
socks
|
|
use_chardet_on_py3
|