Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion plugin/python.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down