From 5709a89b23de54d80411b5eeba8390ee24da17eb Mon Sep 17 00:00:00 2001 From: Patrick Devaney Date: Fri, 3 Jan 2025 17:20:58 -0500 Subject: [PATCH] [CLEANUP] --- tests/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"