Skip to content

Commit

Permalink
skip test which fails sometimes on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
jveitchmichaelis committed Nov 22, 2022
1 parent 0c76f2c commit 9441b9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_effective_pixel.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from unittest.mock import patch

import sys
import numpy as np
import pytest

from rascal.atlas import Atlas
from rascal.calibrator import Calibrator
from rascal.synthetic import SyntheticSpectrum


@patch("matplotlib.pyplot.show")
@pytest.mark.skipif(sys.platform == "darwin", reason="does not run on Mac")
def test_providing_effective_pixel_not_affecting_fit(mock_show):

# Create a test spectrum with a simple linear relationship
Expand Down

0 comments on commit 9441b9c

Please sign in to comment.