diff --git a/tests/Dockerfile b/tests/Dockerfile index 5be86275..3ef3a634 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -20,8 +20,8 @@ RUN pip install poetry # Configure Poetry to avoid virtual environments and install dependencies RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi -# Install additional dependencies (e.g., swarms, pytest) -RUN pip install swarms pytest +# Install pytest +RUN pip install pytest # Ensure pytest is installed and available RUN pytest --version || echo "pytest not found"