We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0106708 + 8d4205a commit 994f058Copy full SHA for 994f058
1 file changed
app/models/concerns/has_test_job.rb
@@ -53,7 +53,9 @@ def test_job_id_key
53
54
def test_results_path
55
path_id = Rails.env.test? ? "fakeid_#{model_name.singular}_#{id}" : test_job_id
56
- File.join(Rails.root, 'tmp', "test_results_#{path_id}.yml")
+ dir = Rails.root.join('tmp', 'source_test_results')
57
+ dir.mkpath
58
+ dir.join("test_results_#{path_id}.yml")
59
end
60
61
def deep_hashify(params)
0 commit comments