From 93d462c3bae80e6bac66dd5706df0a79fc6e134e Mon Sep 17 00:00:00 2001 From: Dheepak Date: Sat, 19 Sep 2015 15:17:25 -0600 Subject: [PATCH 1/2] RunAllNoseTests from parent directory --- plugin/python.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/python.vim b/plugin/python.vim index 95aa57f..0764fc6 100644 --- a/plugin/python.vim +++ b/plugin/python.vim @@ -17,7 +17,7 @@ endfunction function s:RunAllNoseTests() let virtualenv = FindVirtualEnv() - call VimuxRunCommand("clear; " . virtualenv . "nosetests *.py") + call VimuxRunCommand("clear; " . virtualenv . "nosetests") endfunction function s:RunCurrentNoseTests() From c25e625e7e633b42452e3cf676791fae52a826a7 Mon Sep 17 00:00:00 2001 From: Dheepak Date: Sat, 19 Sep 2015 15:33:54 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d3213d..858244a 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,5 @@ It's pathogen compliant, so just drop in your bundle directory ## Commands -- RunAllNoseTests - runs all the nose tests in a file +- RunAllNoseTests - runs all the nose tests in the directory - RunFocusedNoseTests - runs the current test under the cursor (requires nose-run-line-number)