mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Try to avoid running bundler in tests on Travis
This commit is contained in:
parent
d4bccd76ab
commit
ed50d4326a
3 changed files with 4 additions and 2 deletions
|
@ -7,6 +7,8 @@ rvm:
|
||||||
|
|
||||||
script: "bundle exec rake test"
|
script: "bundle exec rake test"
|
||||||
|
|
||||||
|
env: TRAVIS=true
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rvm: jruby-19mode
|
- rvm: jruby-19mode
|
|
@ -57,7 +57,7 @@ module Middleman::Templates
|
||||||
|
|
||||||
inside(location) do
|
inside(location) do
|
||||||
::Middleman::Cli::Bundle.new.invoke(:bundle)
|
::Middleman::Cli::Bundle.new.invoke(:bundle)
|
||||||
end
|
end unless ENV["TRAVIS"]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Output a .gitignore file
|
# Output a .gitignore file
|
||||||
|
|
Loading…
Reference in a new issue