diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 291bd2e9df99e49ef23996bdefabfdf590cb209f..d21d0e72a41521c1a80f5d1d2454631266d1e617 100755
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,10 +11,10 @@ variables:
 before_script:
   - export http_proxy=${HTTP_PROXY}
   - export https_proxy=${HTTP_PROXY}
-  - apk add --no-cache icu-dev
+	- pecl install xdebug
   - docker-php-ext-configure intl
   - docker-php-ext-install json intl mysqli
-  - docker-php-ext-enable json intl mysqli
+  - docker-php-ext-enable json intl mysqli debug
 
   - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer
   - http_proxy=${HTTP_PROXY} https_proxy="" composer global require hirak/prestissimo
diff --git a/composer.json b/composer.json
index 436e5064ac9732199da6875b152aa52f51ff511c..9e34926130bebae9eb03089bc86c508ab8a91d5c 100755
--- a/composer.json
+++ b/composer.json
@@ -17,7 +17,7 @@
 		"paragonie/random_compat": "Provides better randomness in PHP 5.x"
 	},
 	"scripts": {
-		"test": "phpunit --configuration application/tests"
+		"test": "phpunit --configuration application/tests --coverage-text --coverage-html report"
 	},
 	"require-dev": {
 		"mikey179/vfsStream": "1.1.*",