mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-04-27 14:57:42 +00:00
Try a relative path
This commit is contained in:
parent
0158ed3fcb
commit
e27dbe2c85
2 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
version: << parameters.version >>
|
version: << parameters.version >>
|
||||||
- run: bundle exec rake test
|
- run: bundle exec rake test
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: "$CIRCLE_TEST_REPORTS/reports"
|
path: ./reports
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,5 @@
|
||||||
if ENV['CIRCLECI']
|
if ENV['CIRCLECI']
|
||||||
require 'minitest/ci'
|
require 'minitest/ci'
|
||||||
|
|
||||||
Minitest::Ci.report_dir = File.join(ENV.fetch('CIRCLE_TEST_REPORTS'), 'reports')
|
Minitest::Ci.report_dir = './reports'
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue