From e040840e6550a55cc32d21cc56f6a8db5041fb94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3n=C3=A1n=20Carrigan?= Date: Sun, 5 Jun 2022 11:24:07 +0100 Subject: [PATCH] feat: remove vim-test arg compat --- lua/neotest-python/init.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lua/neotest-python/init.lua b/lua/neotest-python/init.lua index 2437d56..00fedf6 100644 --- a/lua/neotest-python/init.lua +++ b/lua/neotest-python/init.lua @@ -31,11 +31,8 @@ local function get_strategy_config(strategy, python, program, args) end end -local get_args = function(runner, position) - if runner == "unittest" then - runner = "pyunit" - end - return lib.vim_test.collect_args("python", runner, position) +local get_args = function() + return {} end local stored_runners = {}