-
Notifications
You must be signed in to change notification settings - Fork 515
Closed
Description
I am trying to even test group runtimes for minitest. We have two different CI jobs for minitest and we call this gems rake task in them. Because we have two different jobs running different tests I would want them to write a different runtime log.
I tried passing the --runtime-log argument in the rake task like this to write the log to a different filename.
task unit: :environment do
ci_db_setup
Rake::Task['parallel:test'].invoke(nil, '^test/unit', nil, '--runtime-log tmp/parallel_runtime_unit.log')
end
task functional: :environment do
ci_db_setup
Rake::Task['parallel:test'].invoke(nil, '^test/functional', nil, '--runtime-log tmp/parallel_runtime_functional.log')
endBut the setting is not respected and it still writes to the default location.
Is there some other way this can be configured?
Metadata
Metadata
Assignees
Labels
No labels