From a6caa85a58d81aa4cd47172979a9c94aa8a902c6 Mon Sep 17 00:00:00 2001 From: Kevin Locke Date: Sun, 10 Feb 2019 20:37:13 -0700 Subject: pylama: Use %s instead of %t Although using %t to lint changes was desirable, many pylama checks use surrounding paths and file contents (e.g. C0103 module name, E0402 relative import beyond top, etc.) The more such errors I find during testing, the less %t seems like a good idea. Switch to %s. Also set `lint_file` to 1 and mark Pylama as a file linter in the docs. Signed-off-by: Kevin Locke --- test/handler/test_pylama_handler.vader | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'test/handler/test_pylama_handler.vader') diff --git a/test/handler/test_pylama_handler.vader b/test/handler/test_pylama_handler.vader index 854765db..d21c65d3 100644 --- a/test/handler/test_pylama_handler.vader +++ b/test/handler/test_pylama_handler.vader @@ -191,22 +191,3 @@ Execute(The pylama handler should handle message codes followed by a colon): \ ale_linters#python#pylama#Handle(bufnr(''), [ \ 'index.py:31:1: E800: Found commented out code: # needs_sphinx = ''1.0'' [eradicate]', \ ]) - -" The directory created for %t may not comply with pylint module name config. -" This should not be reported to users. -Execute(The pylama handler should ignore C0103 from temp dir, not others): - AssertEqual - \ [ - \ { - \ 'lnum': 29, - \ 'col': 0, - \ 'code': 'C0103', - \ 'type': 'W', - \ 'sub_type': 'style', - \ 'text': 'Constant name "badname" doesn''t conform to UPPER_CASE naming style [pylint]', - \ }, - \ ], - \ ale_linters#python#pylama#Handle(bufnr(''), [ - \ '../../../../tmp/vmynR33/456/__init__.py:1:0: C0103 Module name "456" doesn''t conform to snake_case naming style [pylint]', - \ '../../../../tmp/vmynR33/456/__init__.py:29:0: C0103 Constant name "badname" doesn''t conform to UPPER_CASE naming style [pylint]', - \ ]) -- cgit v1.2.3