From e69be4ab7b58c2b583735e6cadfc67ac2831ad2e Mon Sep 17 00:00:00 2001 From: Saddam Date: Wed, 8 Jul 2026 14:57:53 +0200 Subject: [PATCH] Rename test/ to tests/ to match pytest testpaths config pyproject.toml sets testpaths = ["tests"] and MANIFEST.in includes recursive-include tests *.py, but the directory is named test/, so running pytest with no arguments does not pick up the configured test path. Co-Authored-By: Claude Fable 5 --- {test => tests}/test_io_utils.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {test => tests}/test_io_utils.py (100%) diff --git a/test/test_io_utils.py b/tests/test_io_utils.py similarity index 100% rename from test/test_io_utils.py rename to tests/test_io_utils.py