We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a6b39c commit 5866cbdCopy full SHA for 5866cbd
light-curve/.gitignore
@@ -8,3 +8,4 @@ dist/
8
.tox/
9
*.pyc
10
target/
11
+venv/
light-curve/tests/light_curve_ext/test_feature.py
@@ -431,7 +431,7 @@ def test_json_serialization(feature):
431
432
from_to_json = lc.feature_from_json(feature.to_json())
433
values_from_to_json = from_to_json(*data)
434
- assert_allclose(values, values_from_to_json)
+ assert_allclose(values, values_from_to_json, rtol=1e-6)
435
436
437
def test_json_deserialization():
0 commit comments