We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9248cf commit bc5106aCopy full SHA for bc5106a
tests/client/client_tests.py
@@ -47,6 +47,7 @@
47
48
import elasticapm
49
from elasticapm.base import Client
50
+from elasticapm.conf import _in_fips_mode
51
from elasticapm.conf.constants import ERROR
52
53
try:
@@ -350,6 +351,7 @@ def test_call_end_twice(elasticapm_client):
350
351
elasticapm_client.end_transaction("test-transaction", 200)
352
353
354
+@pytest.mark.skipif(_in_fips_mode() is True, reason="cannot disable verify_server_cert in fips mode")
355
@pytest.mark.parametrize("elasticapm_client", [{"verify_server_cert": False}], indirect=True)
356
def test_client_disables_ssl_verification(elasticapm_client):
357
assert not elasticapm_client.config.verify_server_cert
0 commit comments