diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-27 16:40:01 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-27 16:40:01 +0100 |
commit | a0c5f3ee5593760d92791c615540658108dbdfe8 (patch) | |
tree | a31f54e41455b2e9ed2e32a8b924f2aa82ed23e1 | |
parent | 6b8c72637f4c414e11ca52d054ebe8690285113e (diff) | |
download | vim-polyglot-a0c5f3ee5593760d92791c615540658108dbdfe8.tar.gz vim-polyglot-a0c5f3ee5593760d92791c615540658108dbdfe8.zip |
Try to not reuse server for Travis
-rwxr-xr-x | spec/spec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 0048686d..a8b0d32c 100755 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -6,7 +6,7 @@ $plugin_path = File.expand_path('../..', __FILE__) Vimrunner::RSpec.configure do |config| # Use a single Vim instance for the test suite. Set to false to use an # instance per test (slower, but can be easier to manage). - config.reuse_server = true + config.reuse_server = false # Decide how to start a Vim instance. In this block, an instance should be # spawned and set up with anything project-specific. |