Skip to content

Commit 36d5d30

Browse files
authored
Merge pull request #482 from ichizok/test/travis
Workaround: Skip Test_edit_MOUSE
2 parents 3d96d09 + a7b8671 commit 36d5d30

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ script:
4747
- rm -f result; $VIMCMD -g -f -c "redir>result" -c "py3 import sys; print(\"Test\")" -c "redir END" -c q; cat result; echo; grep -q -w Test result
4848
- rm -f result; $VIMCMD -g -f -c "redir>result" -c "ruby puts(\"Test\")" -c "redir END" -c q; cat result; echo; grep -q -w Test result
4949
- make test
50-
#- make -C src/testdir clean
51-
#- make -C src testgui
50+
- make -C src/testdir clean
51+
- make -C src testgui
5252

5353
before_deploy:
5454
- make -C src macvim-dmg

src/testdir/test_edit.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ endfunc
10541054

10551055
func! Test_edit_MOUSE()
10561056
" This is a simple test, since we not really using the mouse here
1057-
if !has("mouse")
1057+
if !has("mouse") || (has("gui_macvim") && has("gui_running"))
10581058
return
10591059
endif
10601060
10new

0 commit comments

Comments
 (0)