mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-03-25 08:45:54 +00:00
6 lines
147 B
Ruby
6 lines
147 B
Ruby
# Generate XML test reports that can be parsed by CircleCI
|
|
if ENV['CIRCLECI']
|
|
require 'minitest/ci'
|
|
|
|
Minitest::Ci.report_dir = './reports'
|
|
end
|