Commit 88e215ee authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

Fix ci

parent 4d70862a
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -19,17 +19,17 @@ test:

  before_script:
    # Installation des dépendances PHP
    - composer install --prefer-dist --no-progress --no-interaction
    - composer install --prefer-dist --no-progress --no-interaction --ignore-platform-req=ext-gearman

  script:
    # On crée le dossier pour le rapport de test
    - mkdir -p tests/_output
    # Exécute les tests PHPUnit
    - ./vendor/bin/phpunit tests/ --colors=always  --log-junit tmp/junit.xml
    - ./vendor/bin/phpunit tests/ --colors=always  --log-junit tests/_output/junit.xml

  # Permet d'afficher le rapport de test
  artifacts:
    when: always
    expire_in: 1 week
    reports:
      junit: tmp/junit.xml
 No newline at end of file
      junit: tests/_output/junit.xml
 No newline at end of file