Skip to content

Commit

Permalink
.gitlab-ci.yml: Take into account JUnit reports generated by Watir
Browse files Browse the repository at this point in the history
Fix #3469 #3471
  • Loading branch information
mikael-s committed Nov 22, 2019
1 parent b9782f2 commit 8ce34d6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ test_browser_unit:
artifacts:
paths:
- browser/
reports:
junit: browser/test/test/TEST-*.xml
only:
- /^feature-.*c.*\/.*$/
- /^hotfix-.*c.*\/.*$/
Expand All @@ -252,6 +254,8 @@ test_browser_unit:
artifacts:
paths:
- browser/
reports:
junit: browser/test/test/TEST-*.xml
only:
- /^feature-.*c.*\/.*$/
- /^hotfix-.*c.*\/.*$/
Expand Down Expand Up @@ -358,6 +362,9 @@ test_server_unit:
- docker stop $(docker ps -aq)
- docker rm $(docker ps -aq)
- docker rmi "vidjil/server:test" "vidjil/client:test" reporter:test
artifacts:
reports:
junit: server/web2py/applications/vidjil/tests/test/TEST-*.xml
only:
- /^feature-.*s.*\/.*$/
- /^hotfix-.*s.*\/.*$/
Expand Down

0 comments on commit 8ce34d6

Please sign in to comment.