Files
requests/tox.ini
T
Ian Stapleton Cordasco c0813a2d91 Use TLS settings in selecting connection pool
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.
2024-03-06 11:28:13 -06:00

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