From 187cf8c535def8e37fa35dc5c2cf7766b4994cd6 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 30 Jul 2024 19:17:06 -0600 Subject: [PATCH] fix a few tests --- tests/unit/conftest.py | 2 ++ tests/unit/test_grasshopper_configuration_fixtures.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 415db4d..5c888a7 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -51,6 +51,8 @@ def current_global_defaults(): "cleanup_s3": True, "slack": False, "influx": False, + "influx_ssl": False, + "influx_verify_ssl": False, "report_portal": False, "rp_launch_name": "Grasshopper Performance Test Run | Launch name unknown", "rp_launch": "Grasshopper Performance Test Run | Launch name unknown", diff --git a/tests/unit/test_grasshopper_configuration_fixtures.py b/tests/unit/test_grasshopper_configuration_fixtures.py index dc19d99..9350e10 100644 --- a/tests/unit/test_grasshopper_configuration_fixtures.py +++ b/tests/unit/test_grasshopper_configuration_fixtures.py @@ -25,6 +25,8 @@ def expected_global_defaults(): "cleanup_s3": True, "slack": False, "influx": False, + "influx_ssl": False, + "influx_verify_ssl": False, "report_portal": False, "rp_launch_name": "Grasshopper Performance Test Run | Launch name unknown", "rp_launch": "Grasshopper Performance Test Run | Launch name unknown",