From c0c8fbfe590a4ed35c230538e3821ec4def9cc29 Mon Sep 17 00:00:00 2001 From: Max Grover Date: Thu, 5 Dec 2024 16:16:25 -0600 Subject: [PATCH] FIX: Ensure cvxopt skipped if not installed (#1702) * FIX: Fix the gallery build issue with new sphinx * FIX: Fix the flag for the cvxopt flag --- tests/correct/test_phase_proc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/correct/test_phase_proc.py b/tests/correct/test_phase_proc.py index 0ec500de08..281811fe36 100644 --- a/tests/correct/test_phase_proc.py +++ b/tests/correct/test_phase_proc.py @@ -143,6 +143,7 @@ def perform_phase_processing(LP_solver="cvxopt"): return radar, phidp, kdp +@pytest.mark.skipif(not cvxopt_available, reason="CVXOPT is not installed.") def test_perform_phase_processing_gf(LP_solver="cvxopt"): """Perform LP phase processing on a single ray radar.""" radar = pyart.testing.make_single_ray_radar()