Python support poetry (#3834)

* Add poetry support to python linters and black fixer.

* Update python.vim to detect poetry project.

* Update ale.vim, add an option for poetry `g:ale_python_auto_poetry`.

* Update ale-python.txt, add poetry support.

* Add and update poetry related tests.

Co-authored-by: unc0 <unc0@users.noreply.github.com>
This commit is contained in:
Daniel Roseman
2021-07-25 05:39:05 +01:00
committed by GitHub
parent 530b38de34
commit 7d8fb2ba17
32 changed files with 414 additions and 16 deletions

View File

@@ -0,0 +1,19 @@
Before:
call ale#test#SetDirectory('/testplugin/test')
After:
call ale#test#RestoreDirectory()
Execute(ale#python#poetryPresent is true when a poetry environment is present):
call ale#test#SetFilename('test-files/python/poetry/whatever.py')
AssertEqual
\ ale#python#PoetryPresent(bufnr('%')),
\ 1
Execute(ale#python#poetryPresent is false when no poetry environment is present):
call ale#test#SetFilename('test-files/python/no_poetry/whatever.py')
AssertEqual
\ ale#python#PoetryPresent(bufnr('%')),
\ 0