Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/models/concerns/has_test_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_job_id_key

def test_results_path
path_id = Rails.env.test? ? "fakeid_#{model_name.singular}_#{id}" : test_job_id
File.join(Rails.root, 'tmp', "test_results_#{path_id}.yml")
Rails.root.join('tmp', 'source_test_results').tap { |d| d.mkdir unless d.exist? }.join("test_results_#{path_id}.yml")
Comment thread
Copilot marked this conversation as resolved.
Outdated
end

def deep_hashify(params)
Expand Down