diff --git a/test_runner/regress/test_lfc_working_set_approximation.py b/test_runner/regress/test_lfc_working_set_approximation.py index dfb1db8a18..2ee15b60fd 100644 --- a/test_runner/regress/test_lfc_working_set_approximation.py +++ b/test_runner/regress/test_lfc_working_set_approximation.py @@ -85,14 +85,16 @@ WITH (fillfactor='100'); log.debug(f"Raw metrics: {autoscaling_metrics}") m = parse_metrics(autoscaling_metrics) - http_estimate = m.query_one("lfc_approximate_working_set_size_windows", - { - "duration_seconds": "60", - }, + http_estimate = m.query_one( + "lfc_approximate_working_set_size_windows", + { + "duration_seconds": "60", + }, ).value log.info(f"http estimate: {http_estimate}, blocks: {blocks}") assert http_estimate > 0 and http_estimate < 20 + @pytest.mark.skipif(not USE_LFC, reason="LFC is disabled, skipping") def test_sliding_working_set_approximation(neon_simple_env: NeonEnv): env = neon_simple_env