From 20072a9249cd97126a222c62a70f84e0433343ef Mon Sep 17 00:00:00 2001 From: Lukas Gold Date: Fri, 28 Aug 2026 14:45:32 +0200 Subject: [PATCH] test: rename oold.py to oold_test.py so its tests are collected - the filename matched neither test_*.py nor *_test.py, so its 6 tests had never been collected by pytest - the basename also shadowed the installed oold package on sys.path, breaking `pytest tests/utils/` with "No module named 'oold.utils'" - full default suite goes from 36 to 42 passed --- tests/utils/{oold.py => oold_test.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/utils/{oold.py => oold_test.py} (100%) diff --git a/tests/utils/oold.py b/tests/utils/oold_test.py similarity index 100% rename from tests/utils/oold.py rename to tests/utils/oold_test.py