You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For any pandas > 1.1, current behavior sets either atol, rtol = [1e-3, 1e-3] or atol, rtol = [1e-5, 1e-5]. If atol or rtol are specified they are silently ignored.
Describe the solution you'd like
Pass atol and rtol through to pd.testing.assert_frame_equal
Describe alternatives you've considered
Live with it and compute more accurate test solutions.
The text was updated successfully, but these errors were encountered:
It would be nice to be able to supply
atol
and/orrtol
to pvlib.conftest.assert_frame_equal.For any pandas > 1.1, current behavior sets either
atol, rtol = [1e-3, 1e-3]
oratol, rtol = [1e-5, 1e-5]
. Ifatol
orrtol
are specified they are silently ignored.Describe the solution you'd like
Pass
atol
andrtol
through topd.testing.assert_frame_equal
Describe alternatives you've considered
Live with it and compute more accurate test solutions.
The text was updated successfully, but these errors were encountered: