Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed May 2, 2024
1 parent 889f8d3 commit 39c1c6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/tests/splines_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import math
import os
import platform
import uuid
from tempfile import mkdtemp
from typing import Any
Expand Down Expand Up @@ -917,7 +918,7 @@ def example_spline_1(
extrapolate=extrapolate,
)

if os.name == "nt":
if os.name == "nt" or platform.system() == "Darwin":
tols = (
dict(llh_rtol=1e-15, x_rtol=1e-8, x_atol=1e-7),
dict(llh_rtol=1e-15, x_rtol=1e-8, x_atol=1e-7),
Expand Down

0 comments on commit 39c1c6c

Please sign in to comment.