test: add benchmark marker to pytest configuration

- Add 'benchmark' marker for performance tests
- Enables selective test execution with -m benchmark flag
This commit is contained in:
kazuki
2025-10-19 23:22:25 +09:00
parent bc1d0ace82
commit bb748784e7

View File

@@ -116,7 +116,9 @@ python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests"
"integration: marks tests as integration tests",
"benchmark: marks tests as performance benchmarks",
"validation: marks tests as validation tests for PM mode claims"
]
[tool.coverage.run]