Skip to content

Commit 14e2567

Browse files
authored
Bugfix: Missing pytest-celery installation in built-in Celery worker (#213)
1 parent 07cf08d commit 14e2567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pytest_celery/vendors/worker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.10-slim-buster
44
RUN adduser --disabled-password --gecos "" test_user
55

66
# Install system dependencies
7-
RUN apt-get update && apt-get install -y build-essential
7+
RUN apt-get update && apt-get install -y build-essential git
88

99
# Set arguments
1010
ARG CELERY_VERSION=""
@@ -23,7 +23,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
2323
RUN pip install --no-cache-dir --upgrade \
2424
pip \
2525
celery[redis,pymemcache]${WORKER_VERSION:+==$WORKER_VERSION} \
26-
psutil
26+
git+https://github.com/celery/pytest-celery.git
2727

2828
# The workdir must be /app
2929
WORKDIR /app

0 commit comments

Comments
 (0)