Cross-Package Development¶
📝 Detailed guide coming soon.
Quick Example¶
# Edit in one package
cd provide-foundation/
# ... make changes to logger ...
# Test in another package (immediate!)
cd ../pyvider/
uv run pytest tests/test_logging.py
How It Works¶
Editable installs (pip install -e) make changes immediately available without reinstall.