From a9f3fb81cc18fb1166e98388dbb6ed5c2863fb02 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 13 Nov 2025 12:26:59 -0500 Subject: [PATCH] Fix pylume pytest installation in CI --- .github/workflows/python-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 6bfbed5c..84e1dc70 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -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