Add python requests to CI
There are some scripts in bmcweb that we'd like to be able to run during
CI. They rely on requests to compare the standards driven files against
what exists in the codebase to make sure that people haven't edited by
hand.
To do this, add the requests dependency.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Idbb06d6ba992244c652094040849787bb1487805
diff --git a/scripts/build-unit-test-docker b/scripts/build-unit-test-docker
index 32ca42a..0c6550a 100755
--- a/scripts/build-unit-test-docker
+++ b/scripts/build-unit-test-docker
@@ -864,6 +864,7 @@
RUN pip3 install meson==0.58.1
RUN pip3 install protobuf
RUN pip3 install codespell
+RUN pip3 install requests
"""
# Build the base and stage docker images.