install gcov

This commit is contained in:
einhorn_b 2021-06-01 14:21:30 +02:00
parent 408091aa44
commit 87f81f67c5

View File

@ -16,10 +16,14 @@ RUN composer dump-autoload
######### special for code coverage and testing
FROM community_server as test
RUN apt-get update \
&& apt-get -y --no-install-recommends install php7.4-xdebug lcov \
&& apt-get -y --no-install-recommends install php7.4-xdebug lcov python3-pip \
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
RUN pip3 install gcovr
WORKDIR /var/www/cakephp
ENV XDEBUG_MODE=coverage