Skip to content

Commit 532975b

Browse files
committed
Added Unzip and Coverage
1 parent 613dce4 commit 532975b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM composer:${COMPOSER_VERSION}
55
FROM php:${PHP_VERSION}-cli
66

77
RUN apt-get update && \
8-
apt-get install -y autoconf pkg-config libssl-dev git libzip-dev zlib1g-dev && \
8+
apt-get install -y autoconf pkg-config libssl-dev git libzip-dev zlib1g-dev unzip && \
99
pecl install mongodb && docker-php-ext-enable mongodb && \
1010
pecl install xdebug && docker-php-ext-enable xdebug && \
1111
docker-php-ext-install -j$(nproc) pdo_mysql zip

phpunit.xml.dist

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@
4242
<directory>tests/ValidationTest.php</directory>
4343
</testsuite>
4444
</testsuites>
45+
<filter>
46+
<whitelist processUncoveredFilesFromWhitelist="true">
47+
<directory suffix=".php">src</directory>
48+
</whitelist>
49+
</filter>
4550
</phpunit>

0 commit comments

Comments
 (0)