diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-14 17:53:52 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-14 17:53:52 -0400 |
commit | cccfc1b60387b31a878e33010c9d61f339e68d63 (patch) | |
tree | 4b5e8f920035d66f6f470afc116e7f1fdb1227a2 | |
parent | ce3d9503b2f47f592be5cee51af4f78285c69506 (diff) | |
download | rneovim-cccfc1b60387b31a878e33010c9d61f339e68d63.tar.gz rneovim-cccfc1b60387b31a878e33010c9d61f339e68d63.tar.bz2 rneovim-cccfc1b60387b31a878e33010c9d61f339e68d63.zip |
test/old: skip python-bindeval tests
-rw-r--r-- | src/nvim/testdir/test_python2.vim | 1 | ||||
-rw-r--r-- | src/nvim/testdir/test_python3.vim | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_python2.vim b/src/nvim/testdir/test_python2.vim index 647290e6b5..8d55b59c31 100644 --- a/src/nvim/testdir/test_python2.vim +++ b/src/nvim/testdir/test_python2.vim @@ -41,6 +41,7 @@ func Test_set_cursor() endfunc func Test_vim_function() + throw 'skipped: Nvim does not support vim.bindeval()' " Check creating vim.Function object py import vim diff --git a/src/nvim/testdir/test_python3.vim b/src/nvim/testdir/test_python3.vim index 26aaab31ed..cd07b0883f 100644 --- a/src/nvim/testdir/test_python3.vim +++ b/src/nvim/testdir/test_python3.vim @@ -41,6 +41,7 @@ func Test_set_cursor() endfunc func Test_vim_function() + throw 'skipped: Nvim does not support vim.bindeval()' " Check creating vim.Function object py3 import vim |