diff --git a/tests/test_predictors.py b/tests/test_predictors.py index a0200a4..4d3a759 100644 --- a/tests/test_predictors.py +++ b/tests/test_predictors.py @@ -1,8 +1,9 @@ import datetime as dt import importlib.util -from hypothesis import given +from hypothesis import given, settings from hypothesis.strategies import datetimes, composite, floats +from hypothesis import HealthCheck import pytest from orbit_predictor.constants import R_E_KM @@ -70,6 +71,7 @@ def test_get_normal_vector_zero_inclination_always_z_aligned(predictor, when_utc assert normal_vector[2] == 1 +@settings(deadline=None, suppress_health_check=(HealthCheck.function_scoped_fixture,)) @given(datetimes()) def test_get_beta_always_between_m_90_and_90(non_sun_synchronous, when_utc): assert -90 <= non_sun_synchronous.get_beta(when_utc) <= 90