1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Exclude shell tests on jruby

This commit is contained in:
Evan Phoenix 2012-11-29 12:28:16 -08:00
parent d04ad557b8
commit 8fdc2744c9

View file

@ -112,6 +112,10 @@ namespace :test do
end
desc "Run all tests"
task :all => [:test, "test:integration"]
if defined?(JRUBY_VERSION) and ENV['TRAVIS']
task :all => :test
else
task :all => [:test, "test:integration"]
end
end