mirror of
https://github.com/dense-analysis/ale
synced 2024-12-19 12:55:41 +00:00
9fe7b1fe6a
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
17 lines
652 B
Plaintext
17 lines
652 B
Plaintext
Before:
|
|
call ale#assert#SetUpLinterTest('elixir', 'dialyxir')
|
|
call ale#test#SetFilename('elixir_paths/mix_project/lib/app.ex')
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(Builds dialyxir command with a normal project):
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/elixir_paths/mix_project')
|
|
AssertLinter 'mix', 'mix help dialyzer && mix dialyzer'
|
|
|
|
Execute(Builds dialyxir command with an umbrella project):
|
|
call ale#test#SetFilename('elixir_paths/umbrella_project/apps/mix_project/lib/app.ex')
|
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/elixir_paths/umbrella_project')
|
|
AssertLinter 'mix', 'mix help dialyzer && mix dialyzer'
|