Skip to content

Commit

Permalink
Also run the integration spec when running rake spec, but exclude it …
Browse files Browse the repository at this point in the history
…from Travis.
  • Loading branch information
alloy committed Feb 25, 2012
1 parent ffbf18f commit 04a4c42
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Rakefile
Expand Up @@ -72,7 +72,7 @@ namespace :spec do
end end


task :all => "ext:cleanbuild" do task :all => "ext:cleanbuild" do
sh "bacon spec/**/*_spec.rb" sh "bacon #{FileList['spec/**/*_spec.rb'].join(' ')}"
end end


desc "Run all specs and build all examples" desc "Run all specs and build all examples"
Expand All @@ -83,7 +83,9 @@ namespace :spec do


# For now we don't run the intgration spec, but it should be cleaned up so it can run on Travis. # For now we don't run the intgration spec, but it should be cleaned up so it can run on Travis.
desc "Run the travis CI specs" desc "Run the travis CI specs"
task :travis => :all task :travis => "ext:cleanbuild" do
sh "bacon #{FileList['spec/{functional,unit}/**/*_spec.rb'].join(' ')}"
end


desc "Rebuild all the fixture tarballs" desc "Rebuild all the fixture tarballs"
task :rebuild_fixture_tarballs do task :rebuild_fixture_tarballs do
Expand Down

0 comments on commit 04a4c42

Please sign in to comment.