Loading .gitlab-ci.yml +3 −1 Original line number Diff line number Diff line Loading @@ -15,6 +15,8 @@ cache: - vendor/ before_script: # Création du répertoire pour PHPUnit - mkdir -p tests/_output # On installe XDEBUG pour la couverture de code - pecl install xdebug - docker-php-ext-enable xdebug Loading @@ -28,7 +30,7 @@ test: stage: test script: # Exécute les tests PHPUnit - ./vendor/bin/phpunit --colors=always --coverage-text - XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --coverage-text artifacts: # Sauvegarde les résultats des tests dans les artefacts when: always Loading Loading
.gitlab-ci.yml +3 −1 Original line number Diff line number Diff line Loading @@ -15,6 +15,8 @@ cache: - vendor/ before_script: # Création du répertoire pour PHPUnit - mkdir -p tests/_output # On installe XDEBUG pour la couverture de code - pecl install xdebug - docker-php-ext-enable xdebug Loading @@ -28,7 +30,7 @@ test: stage: test script: # Exécute les tests PHPUnit - ./vendor/bin/phpunit --colors=always --coverage-text - XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always --coverage-text artifacts: # Sauvegarde les résultats des tests dans les artefacts when: always Loading