We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17483be commit 0d448adCopy full SHA for 0d448ad
.travis.yml
@@ -3,4 +3,4 @@ python: "2.7"
3
rvm:
4
- 1.9.3
5
script:
6
- - make test
+ - make travis
Makefile
@@ -6,6 +6,12 @@ PYLAMA = $(LIBS)/pylama
clean:
7
find . -name "*.pyc" -delete
8
9
+# Temporary disable rope tests on Travis
10
+.PHONY: travis
11
+travis:
12
+ rm -rf t/rope.vim
13
+ rake test
14
+
15
.PHONY: test
16
test:
17
bundle install
t/rope.vim
@@ -1,5 +1,7 @@
1
let g:pymode_rope_completion_bind = 'X'
2
let g:pymode_rope_autoimport = 0
+let g:pymode_debug = 1
source plugin/pymode.vim
describe 'pymode-plugin'
0 commit comments