Try a relative path

This commit is contained in:
Sami Samhuri 2026-01-01 16:36:03 -08:00
parent 0158ed3fcb
commit e27dbe2c85
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ jobs:
version: << parameters.version >>
- run: bundle exec rake test
- store_test_results:
path: "$CIRCLE_TEST_REPORTS/reports"
path: ./reports
workflows:
version: 2

View file

@ -2,5 +2,5 @@
if ENV['CIRCLECI']
require 'minitest/ci'
Minitest::Ci.report_dir = File.join(ENV.fetch('CIRCLE_TEST_REPORTS'), 'reports')
Minitest::Ci.report_dir = './reports'
end