From dbbe6c9d16dd6e5902474008981a9bec112121fe Mon Sep 17 00:00:00 2001 From: Abel Hoogeveen Date: Fri, 15 Mar 2019 17:33:36 +0100 Subject: [PATCH] Fixed Gitlab CI not correctly processing PHPUnit --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c466b02..f0de947 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ test:7.1: stage: test image: php:7.1 script: - - vendor/bin/phpunit -c tests/phpunit.xml + - vendor/bin/phpunit -c test/phpunit.xml cache: key: "$CI_BUILD_REF_$CI_BUILD_REF_NAME" paths: @@ -34,7 +34,7 @@ test:7.2: stage: test image: php:7.2 script: - - vendor/bin/phpunit -c tests/phpunit.xml + - vendor/bin/phpunit -c test/phpunit.xml cache: key: "$CI_BUILD_REF_$CI_BUILD_REF_NAME" paths: @@ -44,7 +44,7 @@ test:7.3: stage: test image: php:7.3 script: - - vendor/bin/phpunit -c tests/phpunit.xml + - vendor/bin/phpunit -c test/phpunit.xml cache: key: "$CI_BUILD_REF_$CI_BUILD_REF_NAME" paths: @@ -56,7 +56,7 @@ test:coverage: script: - pecl install xdebug - docker-php-ext-enable xdebug - - vendor/bin/phpunit -c tests/phpunit.xml --coverage-text + - vendor/bin/phpunit -c test/phpunit.xml --coverage-text cache: key: "$CI_BUILD_REF_$CI_BUILD_REF_NAME" paths: @@ -70,7 +70,7 @@ release: script: - pecl install xdebug - docker-php-ext-enable xdebug - - vendor/bin/phpunit -c tests/phpunit.xml --coverage-text + - vendor/bin/phpunit -c test/phpunit.xml --coverage-text artifacts: name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}" paths: