Running tests inside Rails plugin invokes rails test runner instead of rake test runner: Since there is a [Rake](https://github.com/vim-test/vim-test/wiki/Minitest#detecting-the-executable) file with `Rake::TestTask` in rails plugin, the runner executes with the command: ```shell bundle exec rails test test/file_test.rb ``` I tried deleting `gemfile.lock` and Test runner invokes the right command: ```shell bundle exec rake test TEST="test/test_file.rb" ``` Is there a way to manually select the default test runner per application?