Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds test results #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ agent:
machine:
type: e1-standard-2
os_image: ubuntu1804

global_job_config:
prologue:
commands:
Expand Down Expand Up @@ -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:
Expand Down