aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-20 09:46:30 +0100
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-20 09:46:30 +0100
commitcde2cec2795b5475b52195703810e2bf30efc3c3 (patch)
tree0c121906750e0368d3afd7894cf8cbc5b010a404 /tools/dockerfile
parent3a0c72ff6b3f57a4f18fea102254f272dcb0593d (diff)
pip install coverage for python_stretch3.7 image
Diffstat (limited to 'tools/dockerfile')
-rw-r--r--tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile b/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile
index add1cc509d..45291ffdcf 100644
--- a/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile
+++ b/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile
@@ -70,3 +70,6 @@ CMD ["bash"]
RUN apt-get update && apt-get -t testing install -y python3.7 python3-all-dev
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.7
+
+# for Python test coverage reporting
+RUN pip install coverage