Python Packaging and Dependency Management
poetry run pytest tests/Modules/test_Helper.py
poetry run pytest
Use the -v flag. E.g.
poetry run pytest -v
poetry run pytest -v tests/Modules/test_InstallMgr.py
This example shows how to upgrade from Textual 4.0.0 to 6.0.0.
Edit the pyproject.toml file and change the textual = "^4.0.0" to textual = "^6.0.0".
Then run poetry update textual
Verify with a poetry show textual
Add the module to your pyproject.toml file: E.g.
textual-plotext = "^1.0.1"
Then run poetry lock ; poetry install.
poetry check
poetry install
poetry install --with dev