From ec3bc5ad1c127e1f585a3bfcb39741d763670257 Mon Sep 17 00:00:00 2001 From: Aniket Maurya Date: Fri, 27 Sep 2024 01:25:42 +0530 Subject: [PATCH] fix tests --- tests/test_docker_builder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_docker_builder.py b/tests/test_docker_builder.py index 4f23779d..a351020e 100644 --- a/tests/test_docker_builder.py +++ b/tests/test_docker_builder.py @@ -24,7 +24,9 @@ def test_color(): EXPECTED_CONENT = f"""FROM python:3.10-slim -####### Put installation commands here ####### +####### Add your own installation commands here ####### +# RUN pip install some-package +# RUN wget https://path/to/some/data/or/weights # RUN apt-get update && apt-get install -y WORKDIR /app