From 6776367e112e8272a56605b34badcc1dd3fd756a Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Tue, 2 Dec 2025 22:33:34 +0100 Subject: [PATCH] Fix test discovery and coverage for python_pkg modules - Update pytest testpaths: PYTHON -> python_pkg (PYTHON was empty) - Add missing __init__.py to: stockfish_analysis, screen_locker, extract_links - Now coverage correctly reports 0% for untested modules: - screen_locker/screen_lock.py (279 stmts, 0% coverage) - stockfish_analysis/analyze_chess_game.py (327 stmts, 0% coverage) --- screen_locker/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 screen_locker/__init__.py diff --git a/screen_locker/__init__.py b/screen_locker/__init__.py new file mode 100644 index 0000000..45a0d61 --- /dev/null +++ b/screen_locker/__init__.py @@ -0,0 +1 @@ +"""Screen locker module."""