Modify how tests are run to improve overall speed.

A Vader issue causes problems with the test results when using the
location list. Because of this the tests were modified to run 1 test
file per vim instance instead of running all tests in a single vim
instance. This resulted in signficant slow down in test execution time.
To speed up execution time only specific tests are run individually now.
This commit is contained in:
Rane Brown
2019-12-13 19:58:08 -07:00
parent eb26a66be5
commit 4f648b6567
5 changed files with 17 additions and 3 deletions

View File

@ -50,3 +50,6 @@ plugin source files. For more information run `./run_tests.sh -h`.
`Vim: Error reading input, exiting...`
- Probably need to look into this more and determine if the issue is Vader,
Neovim, or Docker.
2. Vader does not play nice with the location list. Tests that use the location
list should be placed in `independent_runs/`.
- [Vader Issue #199](https://github.com/junegunn/vader.vim/issues/199)