Skip to content

Commit

Permalink
chore: fix acceptance tests installing the required Python libraries
Browse files Browse the repository at this point in the history
Changelog: None
Ticket: None

Signed-off-by: Fabio Tranchitella <[email protected]>
  • Loading branch information
tranchitella committed Feb 15, 2024
1 parent 64d30f8 commit 30127c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ FROM mendersoftware/mender-test-containers:acceptance-testing

# FIXME: The old and deprecated version of msgpack is a dependency of bravado (unused)
RUN pip uninstall -y msgpack && pip install msgpack==1.0.3

# install additional packages
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt

0 comments on commit 30127c2

Please sign in to comment.