Commit 04a4c425 authored by Eloy Duran's avatar Eloy Duran

Also run the integration spec when running rake spec, but exclude it from Travis.

parent ffbf18f6
...@@ -72,7 +72,7 @@ namespace :spec do ...@@ -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"
...@@ -83,7 +83,9 @@ namespace :spec do ...@@ -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
......
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