Skip to content

Commit

Permalink
Fix skip comment formatting in test_missing_cross_section
Browse files Browse the repository at this point in the history
Corrected the spacing in the skip comment decorator for clarity. Ensured proper syntax to maintain clean coding standards and improve readability in the CI pipeline.

Signed-off-by: Jose Borreguero <[email protected]>
  • Loading branch information
jmborr committed Oct 25, 2024
1 parent 61ae645 commit 3414903
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/ui/test_missing_cross_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
TEST_REFLECTIVITY_THRESHOLD_VALUE = 0.01


#@pytest.mark.skip("Test fails in the CI pipeline, see EWM 7743")
# @pytest.mark.skip("Test fails in the CI pipeline, see EWM 7743")
@pytest.mark.datarepo
def test_missing_cross_section(qtbot):
r"""Test a run where the crossection corresponding to the On-On spin combination has no integrated
Expand All @@ -35,5 +35,6 @@ def test_missing_cross_section(qtbot):
assert intensity_on_on / intensity_off_on < TEST_REFLECTIVITY_THRESHOLD_VALUE
del main_window


if __name__ == "__main__":
pytest.main([__file__])

0 comments on commit 3414903

Please sign in to comment.