diff --git a/noxfile.py b/noxfile.py index 76b35c4a1..8db149ff5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -41,6 +41,7 @@ "pytest", "pytest-cov", "pytest-asyncio", +] UNIT_TEST_EXTERNAL_DEPENDENCIES: List[str] = [] UNIT_TEST_LOCAL_DEPENDENCIES: List[str] = [] diff --git a/tests/unit/data/_metrics/test_data_model.py b/tests/unit/data/_metrics/test_data_model.py index 8795ecaea..66c499f1b 100644 --- a/tests/unit/data/_metrics/test_data_model.py +++ b/tests/unit/data/_metrics/test_data_model.py @@ -510,7 +510,7 @@ def test_end_with_status(self): ) assert final_attempt.gfe_latency == expected_attempt_gfe_latency assert final_attempt.end_status == expected_status - assert time.monotonic() - final_attempt.duration < 0.001 + assert time.monotonic() - final_attempt.duration < 0.01 def test_end_with_status_w_exception(self): """