summaryrefslogtreecommitdiff
path: root/.gitlab/test.yml
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-07 13:29:53 -0700
committermo khan <mo.khan@gmail.com>2020-03-07 13:29:53 -0700
commitfcf555e12daabd7aedd0bea2c83915dee3ca71fd (patch)
treef1f8895999464c8e54681e83f327465c3ebac732 /.gitlab/test.yml
parent931653ff41cf5b645a14f59f93fcc7651b9906cb (diff)
Export junit report
Diffstat (limited to '.gitlab/test.yml')
-rw-r--r--.gitlab/test.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.gitlab/test.yml b/.gitlab/test.yml
index 3cc207e..074d13a 100644
--- a/.gitlab/test.yml
+++ b/.gitlab/test.yml
@@ -19,9 +19,12 @@ lint:
unit:
stage: test
script:
- - gem install bundler -v '~> 2.0'
- - bundle install
- - bundle exec rspec spec/unit
+ - ./bin/test spec/unit --format RspecJunitFormatter --out rspec.xml
+ artifacts:
+ paths:
+ - rspec.xml
+ reports:
+ junit: rspec.xml
integration:
image: