Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tests/test_benchmark_pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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,
Expand Down
Loading