Skip to content

Commit

Permalink
fix bug in pytest mark
Browse files Browse the repository at this point in the history
  • Loading branch information
jcharkow committed Oct 1, 2024
1 parent 62a5c2d commit abc58a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/plotting/test_InteractiveThreeDimensionPlotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_plot_3d_vline(featureMap, snapshot_plotly):
fig = plotter.plot(featureMap)
assert snapshot_plotly == fig

@pytest.skipif(sys.platform == 'Darwin', reason="Plots slightly different on mac")
@pytest.mark.skipif(sys.platform == 'Darwin', reason="Plots slightly different on mac")
@pytest.mark.parametrize('include_ms1,include_ms2,smoothing_dict,type_of_comparison', [
# no smoothing
(True, True, dict(type='none'), 'retention time vs m/z'),
Expand Down

0 comments on commit abc58a7

Please sign in to comment.