Skip to content

Commit

Permalink
Fix setting up tests locally.
Browse files Browse the repository at this point in the history
We cannot use the Rakefiles folder as folder
for projects. We need the root of the gem
  • Loading branch information
tvdeyen committed Sep 12, 2024
1 parent d8c3bf2 commit fa6d589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/testing.rake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def subproject_task(project, task, title: project, task_name: nil)
task_name ||= "#{task}:#{project}"
task task_name do
print_title(title)
Dir.chdir("#{File.dirname(__FILE__)}/#{project}") do
Dir.chdir("./#{project}") do
sh "rake #{task}"
end
end
Expand Down

0 comments on commit fa6d589

Please sign in to comment.