From bb748784e79534b49406e9d5e7da2fe76b297447 Mon Sep 17 00:00:00 2001 From: kazuki Date: Sun, 19 Oct 2025 23:22:25 +0900 Subject: [PATCH] test: add benchmark marker to pytest configuration - Add 'benchmark' marker for performance tests - Enables selective test execution with -m benchmark flag --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c4e833..ccc1cc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]