Created
July 5, 2009 12:19
-
-
Save railslove/140958 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc "Task to run all required tasks to perform continuos integration with integrity/hudson" | |
task :cc do | |
RAILS_ENV = ENV['RAILS_ENV'] = 'test' | |
Rake::Task["test:move_test_db_config"].invoke | |
Rake::Task["gems:install"].invoke | |
Rake::Task["db:drop"].invoke | |
Rake::Task["db:create"].invoke | |
Rake::Task["db:migrate"].invoke | |
Rake::Task["test"].invoke | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment