Commit 9b1a5b49 by Will Daly

Pass in harvest args to fasttest_acceptance, not the args array

parent 51fcb524
...@@ -111,7 +111,7 @@ TEST_TASK_DIRS = [] ...@@ -111,7 +111,7 @@ TEST_TASK_DIRS = []
desc "Run acceptance tests" desc "Run acceptance tests"
task "test_acceptance_#{system}", [:harvest_args] => [:clean_test_files, "#{system}:gather_assets:acceptance"] do |t, args| task "test_acceptance_#{system}", [:harvest_args] => [:clean_test_files, "#{system}:gather_assets:acceptance"] do |t, args|
setup_acceptance_db(system) setup_acceptance_db(system)
Rake::Task["fasttest_acceptance_#{system}"].invoke(*args) Rake::Task["fasttest_acceptance_#{system}"].invoke(args.harvest_args)
end end
desc "Run acceptance tests without collectstatic or database migrations" desc "Run acceptance tests without collectstatic or database migrations"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment