Skip to content

Commit

Permalink
Merge pull request #24 from lsst/tickets/DM-34297
Browse files Browse the repository at this point in the history
  • Loading branch information
timj authored Apr 2, 2022
2 parents 4b13f4b + 0c3b50d commit 03aae25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def simulate(self, a, b):
return self.x, self.model, self.model_err


@unittest.skipIf(sys.platform == "darwin", 'Skipping because macOS 11.0 passes but 10.15 fails '
@unittest.skip('Numerical instability/lack of random seeding is assumed make these tests fail randomly on '
'some np.all() asserts in this package. Attempt to turn back on as part of DM-33747.')
def test_fitworkspace():
# Create mock data
Expand Down Expand Up @@ -87,7 +87,7 @@ def lnprob(p):
assert np.all([np.abs(w.p[i] - truth[i]) / np.sqrt(w.cov[i, i]) < 3 for i in range(w.ndim)])


@unittest.skipIf(sys.platform == "darwin", 'Skipping because macOS 11.0 passes but 10.15 fails '
@unittest.skip('Numerical instability/lack of random seeding is assumed make these tests fail randomly on '
'some np.all() asserts in this package. Attempt to turn back on as part of DM-33747.')
def test_minimisation_sigma_clipping():
# Create mock data
Expand Down

0 comments on commit 03aae25

Please sign in to comment.