mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 00:44:45 +01:00
25 lines
586 B
Python
25 lines
586 B
Python
import pytest
|
|
from pytest_httpbin import certs
|
|
|
|
|
|
@pytest.fixture(scope='function', autouse=True)
|
|
def httpbin_add_ca_bundle(monkeypatch):
|
|
"""
|
|
Make pytest-httpbin's CA trusted by default.
|
|
|
|
(Same as `httpbin_ca_bundle`, just auto-used.).
|
|
|
|
"""
|
|
monkeypatch.setenv('REQUESTS_CA_BUNDLE', certs.where())
|
|
|
|
|
|
@pytest.fixture(scope='function')
|
|
def httpbin_secure_untrusted(monkeypatch, httpbin_secure):
|
|
"""
|
|
Like the `httpbin_secure` fixture, but without the
|
|
make-CA-trusted-by-default.
|
|
|
|
"""
|
|
monkeypatch.delenv('REQUESTS_CA_BUNDLE')
|
|
return httpbin_secure
|