From 8ebcf9877a88a324a27e88555a4a918f0648b3b8 Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Sat, 12 Oct 2024 18:00:53 -0500 Subject: [PATCH] fix: Changing the python testing shortcut to call pytest instead of running with unittest formatting. --- nvim/lua/custom_functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/custom_functions.lua b/nvim/lua/custom_functions.lua index 3c27126..09a27bd 100644 --- a/nvim/lua/custom_functions.lua +++ b/nvim/lua/custom_functions.lua @@ -18,7 +18,7 @@ return { rust = 'cargo run', }, test = { - python = 'python test', + python = 'pytest', rust = 'cargo test', }, benchmark = {