From f4f2ff2f38626feb2384c3de5f0d79a5825b3b12 Mon Sep 17 00:00:00 2001 From: Juan Rada-Vilela Date: Thu, 2 Apr 2026 13:19:45 +1100 Subject: [PATCH] Allow untyped call in tests --- tests/test_benchmark_pytest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_benchmark_pytest.py b/tests/test_benchmark_pytest.py index 209bfe3..e256bb5 100644 --- a/tests/test_benchmark_pytest.py +++ b/tests/test_benchmark_pytest.py @@ -15,9 +15,8 @@ from types import ModuleType from typing import Any, Callable -from pytest_benchmark.fixture import BenchmarkFixture - import fuzzylite as fl +from pytest_benchmark.fixture import BenchmarkFixture def generate_tests(package: ModuleType) -> str: @@ -77,7 +76,7 @@ def start( self.rows = rows self.shuffle = shuffle self.prepare() - benchmark.pedantic( + benchmark.pedantic( # type: ignore[no-untyped-call] self.run, rounds=rounds, iterations=iterations,