diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-17 10:11:29 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-17 10:11:29 -0600 |
| commit | 6a36e3426d50aa2eb19f14a0bd2c0aa53deae141 (patch) | |
| tree | 263f964848d03121940a40ed4d21a6c7900df87b /.gitlab-ci.yml | |
| parent | 2a73eabc7d3fc830f1bf82f39caf2f612ed1f31e (diff) | |
chore: export junit compatible report
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72c768a..efc3375 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,6 +22,15 @@ integration: services: - docker:stable-dind script: - - apk add build-base git ruby ruby-bigdecimal ruby-bundler ruby-dev ruby-json - - bundle install - - bundle exec rspec + - apk add bash build-base git ruby ruby-bigdecimal ruby-bundler ruby-dev ruby-json + - ./bin/setup + - ./bin/test --format RspecJunitFormatter --out rspec.xml + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - vendor + artifacts: + paths: + - rspec.xml + reports: + junit: rspec.xml |
