You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
308 B

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