From f45c2121cfc655f8bfbcd28627d235a2fe42f54c Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Sun, 16 Mar 2025 09:04:38 +0200 Subject: [PATCH] Test all possible combinations of number of readers and writers in test_lfc_prefetch performance test --- test_runner/performance/test_lfc_prefetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/performance/test_lfc_prefetch.py b/test_runner/performance/test_lfc_prefetch.py index ed9624a0aa..72070a6f2f 100644 --- a/test_runner/performance/test_lfc_prefetch.py +++ b/test_runner/performance/test_lfc_prefetch.py @@ -14,7 +14,7 @@ from fixtures.utils import USE_LFC @pytest.mark.parametrize("n_readers", [1, 2, 4, 8]) @pytest.mark.parametrize("n_writers", [0, 1, 2, 4, 8]) @pytest.mark.skipif(not USE_LFC, reason="LFC is disabled, skipping") -def test_lfc_prefetch(neon_simple_env: NeonEnv: n_readers: int, n_writers: int): +def test_lfc_prefetch(neon_simple_env: NeonEnv, n_readers: int, n_writers: int): """ Test resizing the Local File Cache """