From fad9e11ff09592b7e8e4ca32d2e0e25ab5a4c32a Mon Sep 17 00:00:00 2001 From: Ben Nibbelink Date: Tue, 28 Nov 2023 18:53:50 -0600 Subject: [PATCH] install pytest --- docker/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5183aa5..14a84cc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,8 +7,9 @@ ARG make_cores=2 COPY . /cymetric WORKDIR /cymetric -RUN apt update && apt install -y python3-pip && \ - python -m pip install --target $(cyclus --install-path) . +RUN apt update && apt install -y python3-pip +RUN python -m pip install --target $(cyclus --install-path) . FROM cymetric as cymetric-pytest +RUN apt update && apt install python3-pytest RUN cd tests && python -m pytest \ No newline at end of file