From f6cd54c53734bcb474242f138ccfaee413f764f5 Mon Sep 17 00:00:00 2001 From: Braden Date: Thu, 21 Mar 2024 16:10:13 -0600 Subject: [PATCH] Re-marked Display Shape unit tests --- opencsp/app/sofast/test/test_CalibrateDisplayShape.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opencsp/app/sofast/test/test_CalibrateDisplayShape.py b/opencsp/app/sofast/test/test_CalibrateDisplayShape.py index 44848c3ca..9d6fcac6d 100644 --- a/opencsp/app/sofast/test/test_CalibrateDisplayShape.py +++ b/opencsp/app/sofast/test/test_CalibrateDisplayShape.py @@ -6,6 +6,7 @@ from glob import glob import numpy as np +import pytest from opencsp.app.sofast.lib.CalibrateDisplayShape import CalibrateDisplayShape, DataInput from opencsp.app.sofast.lib.MeasurementSofastFringe import MeasurementSofastFringe @@ -70,6 +71,7 @@ def setUpClass(cls): cls.save_dir_local = join(opencsp_code_dir(), 'app/sofast/test/data/output') ft.create_directories_if_necessary(cls.save_dir_local) + @pytest.mark.no_xvfb def test_xy_screen_fraction(self): """Tests xy points""" data_meas = self.cal.get_data() @@ -80,6 +82,7 @@ def test_xy_screen_fraction(self): atol=1e-6, ) + @pytest.mark.no_xvfb def test_xyz_screen_coords(self): """Tests xyz points""" data_meas = self.cal.get_data()