Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion layers/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ ENV VIRTUAL_ENV=/build/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

RUN pip install mypy pep8 pylint pytest pytest-cov robotframework
COPY requirements.txt /tmp/requirements.txt

RUN pip install -r /tmp/requirements.txt

# Ensure venv owner
USER root
Expand Down
6 changes: 6 additions & 0 deletions layers/base/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mypy==1.19.1
pep8==1.7.1
pylint==4.0.4
pytest==9.0.2
pytest-cov==7.0.0
robotframework==7.3.2 ## WARNING: 7.4 has a bug which breaks our tests