mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-03-25 08:45:54 +00:00
Try to fix CircleCI report dir
This commit is contained in:
parent
5e56271727
commit
f228619b8e
2 changed files with 7 additions and 3 deletions
|
|
@ -53,9 +53,9 @@ jobs:
|
|||
- checkout
|
||||
- bundle_install:
|
||||
version: << parameters.version >>
|
||||
- run: bundle exec rake test TESTOPTS="--ci-dir=./reports"
|
||||
- run: bundle exec rake test
|
||||
- store_test_results:
|
||||
path: ./reports
|
||||
path: "$CIRCLE_TEST_REPORTS/reports"
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
|
|
|
|||
|
|
@ -1,2 +1,6 @@
|
|||
# Generate XML test reports that can be parsed by CircleCI
|
||||
require 'minitest/ci' if ENV['CIRCLECI']
|
||||
if ENV["CIRCLECI"]
|
||||
require 'minitest/ci'
|
||||
|
||||
Minitest::Ci.report_dir = "#{ENV["CIRCLE_TEST_REPORTS"]}/reports"
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue