diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index a7172a5..829b28d 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -15,7 +15,7 @@ agent: machine: type: e1-standard-2 os_image: ubuntu1804 - + global_job_config: prologue: commands: @@ -80,14 +80,18 @@ blocks: - name: "Run Unit tests" task: jobs: - - name: phpunit - commands: - - checkout - - cache restore - - composer install - - npm install - # Run the unit tests from the phpunit binary in vendor folder - - ./vendor/bin/phpunit + - name: phpunit + commands: + - checkout + - cache restore + - composer install + - npm install + # Run the unit tests from the phpunit binary in vendor folder + - ./vendor/bin/phpunit --log-junit junit.xml + epilogue: + always: + commands: + - test-results publish junit.xml - name: "Run Browser tests" task: