summaryrefslogtreecommitdiff
path: root/test/linter/test_pylint.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_pylint.vader')
-rw-r--r--test/linter/test_pylint.vader8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/linter/test_pylint.vader b/test/linter/test_pylint.vader
index d15161e6..73e792fb 100644
--- a/test/linter/test_pylint.vader
+++ b/test/linter/test_pylint.vader
@@ -94,3 +94,11 @@ Execute(poetry is detected when python_pylint_auto_poetry is set):
AssertLinterCwd expand('%:p:h')
AssertLinter 'poetry', ale#Escape('poetry') . ' run pylint'
\ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n %s'
+
+Execute(uv is detected when python_pylint_auto_uv is set):
+ let g:ale_python_pylint_auto_uv = 1
+ call ale#test#SetFilename('../test-files/python/uv/whatever.py')
+
+ AssertLinterCwd expand('%:p:h')
+ AssertLinter 'uv', ale#Escape('uv') . ' run pylint'
+ \ . ' --output-format text --msg-template="{path}:{line}:{column}: {msg_id} ({symbol}) {msg}" --reports n %s'