Merge pull request #570 from trycua/fix/pylume-pytest-installation

Fix pylume pytest installation in CI
This commit is contained in:
Adam
2025-11-13 17:30:15 +00:00
committed by GitHub

View File

@@ -49,7 +49,9 @@ jobs:
# Install the package in editable mode with dev dependencies
if [ -f pyproject.toml ]; then
uv pip install --system -e .
# Install test dependencies
fi
# Install test dependencies if tests directory exists
if [ -d tests ]; then
uv pip install --system pytest pytest-asyncio pytest-mock pytest-cov
fi
shell: bash