mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 22:03:18 +02:00
Replace bare 'except Exception' with specific exception types: - ValueError for move parsing (chess.Move.from_uci, board.push_uci) - json.JSONDecodeError for JSON parsing - OSError for file operations - ImportError for optional imports - AttributeError for attribute access - TypeError for type-related operations - requests.RequestException for HTTP operations - subprocess.SubprocessError for subprocess failures - selenium.NoSuchElementException for element finding Also fixes: - pytest hook signature issue in conftest.py (_config -> _) - Missing file handling in test_puzzles.py - Line length in stockfish_analysis.py Removes all BLE001 per-file ignores from pyproject.toml.
23 lines
695 B
Python
23 lines
695 B
Python
import os
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
# Add repository root to sys.path so 'import python_pkg.*' works when running
|
|
# pytest with a subdirectory as rootdir.
|
|
ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../.."))
|
|
if ROOT not in sys.path:
|
|
sys.path.insert(0, ROOT)
|
|
|
|
|
|
def pytest_ignore_collect(collection_path: Path, _: pytest.Config) -> bool | None:
|
|
"""Ignore per-game blunder test files; keep only the unified one.
|
|
|
|
This lets us keep historical files in the repo without collecting them.
|
|
"""
|
|
basename = collection_path.name
|
|
return bool(
|
|
basename.startswith("test_blunders_") and basename != "test_blunders_all.py"
|
|
)
|