Commit 62488e58 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

.gitlab-ci.yml : désactivation des tests unitaires

parent 08bfd95a
Loading
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
image: registre.unicaen.fr:5000/unicaen-dev-php7.3-apache
image: registre.unicaen.fr:5000/unicaen-dev-php7.4-apache

stages:
- publish
- tests
#- tests

cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
  - vendor/

unit-tests:
  stage: tests
  script:
    - composer install --no-interaction --no-suggest --no-progress
    - php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-text=coverage.txt --colors=never
  artifacts:
    paths:
      - coverage.txt
#unit-tests:
#  stage: tests
#  script:
#    - composer install --no-interaction --no-suggest --no-progress
#    - php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-text=coverage.txt --colors=never
#  artifacts:
#    paths:
#      - coverage.txt

update-satis:
  stage: publish