a8cd5a2fe9
Sure hope I didn't miss any super secret crap :-P
15 lines
308 B
Bash
15 lines
308 B
Bash
function __nosetests_opts(){
|
|
echo $(
|
|
nosetests --help 2>/dev/null | \
|
|
sed "s/, */@@@/g" | \
|
|
grep -E "^ *-" | \
|
|
awk '{ print $1 }' | \
|
|
sed -e "s/@@@/ /" -e "s/,//g" -e "s/=.*//"
|
|
)
|
|
}
|
|
|
|
|
|
complete -W "$(__nosetests_opts)" -f -o default nosetests
|
|
|
|
# vim:filetype=sh
|