Skip to content

Commit

Permalink
Added reasons to skipif statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
braden6521 committed Mar 28, 2024
1 parent 6efb956 commit c6b1975
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion opencsp/app/sofast/test/test_CalibrateDisplayShape.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def setUpClass(cls):
)
cls.data_meas = dist_data

@pytest.mark.skipif(os.name != 'nt')
@pytest.mark.skipif(os.name != 'nt', reason='Does not pass in Linux environment for unkonwn reason.')
def test_screen_distortion_data(self):
"""Tests screen calibration data"""
np.testing.assert_allclose(
Expand Down
2 changes: 1 addition & 1 deletion opencsp/common/lib/process/test/test_MemoryMonitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_stop(self):
monitor.stop(wait=True)
self.assertTrue(monitor.done(), "Monitor should have stopped immediately")

@pytest.mark.skipif(os.name != 'nt')
@pytest.mark.skipif(os.name != 'nt', reason='Does not pass in linux Linux environmnet for unknown reason.')
def test_large_memory_usage(self):
monitor = mm.MemoryMonitor()
monitor.start()
Expand Down

0 comments on commit c6b1975

Please sign in to comment.