From aa30ece76264deba8a0e1cbd03c72b237aa29d32 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 11 Mar 2020 14:47:20 -0400 Subject: [PATCH] Try something out of CI --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 016b767..0bddba8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,8 @@ pipeline { steps { sh 'curl -sS https://getcomposer.org/installer | php' sh 'php composer.phar install' - sh 'phpdbg -dffi.enable=1 -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never -c phpunit.xml tests' + sh 'phpdbg -dffi.enable=1 -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never -c phpunit.xml tests' + sh 'ls -al' } } }