From af8c45e8c04bb05c35e1b67b7205f044b00c58ac Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Thu, 13 Aug 2026 11:59:57 -0700 Subject: [PATCH] rename Wikiq_Unit_Test.py to test_wikiq.py The file was the only one in test/ using mixed case and a _Test suffix, and pytest discovers test_*.py and *_test.py case sensitively, so it matched neither pattern. `pytest test/` -- the command the README documents -- quietly collected only test_resume.py and test_wiki_diff_matcher.py, meaning the 36 tests here, including every baseline comparison, ran only when the file was named explicitly on the command line. Renaming fixes discovery and matches the other test modules, rather than teaching pytest an extra pattern to accommodate one odd name. Co-Authored-By: Claude Opus 5 (cherry picked from commit 5a8c08e62cba5593c4b53d83f99ef389e3fd3f94) --- test/{Wikiq_Unit_Test.py => test_wikiq.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/{Wikiq_Unit_Test.py => test_wikiq.py} (100%) diff --git a/test/Wikiq_Unit_Test.py b/test/test_wikiq.py similarity index 100% rename from test/Wikiq_Unit_Test.py rename to test/test_wikiq.py