From c98bda665f65309726f301dc6130049fc7158c20 Mon Sep 17 00:00:00 2001 From: mgrover1 Date: Thu, 5 Dec 2024 15:24:57 -0600 Subject: [PATCH] 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()