summaryrefslogtreecommitdiff
path: root/test/command_callback/test_pylint_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-06-05 08:32:45 +0100
committerGitHub <noreply@github.com>2018-06-05 08:32:45 +0100
commitc49ea1a5e336f9b9e31a8de362b42f33aa79eb95 (patch)
tree587d223c321674579ce9b72dd313f147ff9dccc8 /test/command_callback/test_pylint_command_callback.vader
parent3a6a92283e8eaf76f54292b347dcc6db32c23165 (diff)
parentca88e67af0dc159bdb78ad9f038d2c9336fb1b71 (diff)
downloadale-c49ea1a5e336f9b9e31a8de362b42f33aa79eb95.zip
Merge pull request #1629 from elebow/pipenv-executable-python-tools
Allow all Python linter executables to be set to `pipenv`.
Diffstat (limited to 'test/command_callback/test_pylint_command_callback.vader')
-rw-r--r--test/command_callback/test_pylint_command_callback.vader9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/command_callback/test_pylint_command_callback.vader b/test/command_callback/test_pylint_command_callback.vader
index 1cdc34d4..f8cb5800 100644
--- a/test/command_callback/test_pylint_command_callback.vader
+++ b/test/command_callback/test_pylint_command_callback.vader
@@ -102,3 +102,12 @@ Execute(You should able able to use the global pylint instead):
\ ale#path#BufferCdString(bufnr(''))
\ . ale#Escape('pylint') . ' ' . b:command_tail,
\ ale_linters#python#pylint#GetCommand(bufnr(''))
+
+Execute(Setting executable to 'pipenv' appends 'run pylint'):
+ let g:ale_python_pylint_executable = 'path/to/pipenv'
+
+ AssertEqual
+ \ ale#path#BufferCdString(bufnr(''))
+ \ . ale#Escape('path/to/pipenv') . ' run pylint'
+ \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n %s',
+ \ ale_linters#python#pylint#GetCommand(bufnr(''))