Skip to content

Commit

Permalink
Merge pull request #350 from tranchitella/fix-acceptance-tests
Browse files Browse the repository at this point in the history
chore: fix acceptance tests installing the required Python libraries
  • Loading branch information
tranchitella authored Feb 15, 2024
2 parents 64d30f8 + 30127c2 commit 480f4fb
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 480f4fb

Please sign in to comment.