Skip to content

Commit

Permalink
Manually install tempest-skiplist in tempest container
Browse files Browse the repository at this point in the history
Now that openstack-tempest-skiplist is retired, it is now
available to install with openstack dependencies. This patch
adds a manual installation based on the latest commit in this repo.
  • Loading branch information
viroel committed Mar 4, 2024
1 parent 95bbd6d commit e3a5809
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions images/tempest-container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ RUN dnf update -y && \
dnf clean all && \
rm -rf /var/cache/dnf/*

# Latest commit from skiplist repo before get retired.
RUN git clone https://opendev.org/openstack/openstack-tempest-skiplist.git && \
pushd openstack-tempest-skiplist && \
git checkout ec349ebef6942b2343be4584f734559f33eae241 && \
pip install . && \
popd

RUN curl -s -L "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" -o yq
RUN chmod +x ./yq
RUN mv ./yq /usr/local/bin
Expand Down

0 comments on commit e3a5809

Please sign in to comment.