# Phase 5 — Deferred Items ## Pre-existing issues discovered during Plan 05-01 execution (out of scope) ### test_extractor.py::test_extract_docx — ModuleNotFoundError: No module named 'docx' - **Discovered during:** Task 3 (full pytest run) - **Root cause:** `python-docx` package is not installed in the local Python environment. The backend runs in Docker where all requirements.txt packages are installed, but the local test runner uses the system Python 3.9.6 which does not have a virtualenv with all requirements installed. - **Not caused by:** Plan 05-01 changes (requirements.txt, config.py, conftest.py, test_cloud.py) - **Resolution path:** Install python-docx in the local test environment: `pip3 install python-docx` or run tests inside Docker with all deps available. - **Impact:** 1 pre-existing failure in test_extractor.py; does not affect Phase 5 work.