diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-26 23:42:00 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-26 23:42:00 +0100 |
commit | 20125ac3acc8624c294521b3771de3d38b2b7bce (patch) | |
tree | 92705840e27465058c9ea128b9e82cf65513d94a | |
parent | 9f19823a302ac4b147e5532153b1bed6e23138f3 (diff) | |
download | vim-polyglot-20125ac3acc8624c294521b3771de3d38b2b7bce.tar.gz vim-polyglot-20125ac3acc8624c294521b3771de3d38b2b7bce.zip |
fix: For some reason stylus test hangs on travis
-rw-r--r-- | spec/loading_spec.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/spec/loading_spec.rb b/spec/loading_spec.rb index bb5862bb..06234340 100644 --- a/spec/loading_spec.rb +++ b/spec/loading_spec.rb @@ -10,11 +10,13 @@ describe "My Vim plugin" do extensions = extensions.split(/[\n,]/) extensions.each do |ext| - it "should parse #{ext} file" do - write_file "#{ext}", "" - vim.edit "#{ext}" - vim.insert "sample" - vim.write + unless ext.match(/stylus$/) + it "should parse #{ext} file" do + write_file "#{ext}", "" + vim.edit "#{ext}" + vim.insert "sample" + vim.write + end end end end |