aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
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 /templates
parent3a0c72ff6b3f57a4f18fea102254f272dcb0593d (diff)
pip install coverage for python_stretch3.7 image
Diffstat (limited to 'templates')
-rw-r--r--templates/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile.template3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile.template b/templates/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile.template
index ff342db493..c3602f6c51 100644
--- a/templates/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile.template
+++ b/templates/tools/dockerfile/test/python_stretch_3.7_x64/Dockerfile.template
@@ -18,3 +18,6 @@
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