14 lines
338 B
Python
14 lines
338 B
Python
"""Pytest configuration for profiling tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
def pytest_configure(config: pytest.Config) -> None:
|
|
"""Register profiling markers."""
|
|
config.addinivalue_line(
|
|
"markers",
|
|
"profiling: marks tests as profiling tests (deselect with '-m \"not profiling\"')",
|
|
)
|