Added "test" related Bash completions for Gradle.
--- a/.bash_completion.d/gradle Sat Jan 18 14:26:49 2020 +0200
+++ b/.bash_completion.d/gradle Sat Jan 18 21:35:43 2020 +0200
@@ -94,9 +94,6 @@
wrapper)
COMPREPLY=( --gradle-version )
IFS=$OIFS; return ;;
- test)
- COMPREPLY=( --tests )
- IFS=$OIFS; return ;;
dependencies|dependencyInsight)
COMPREPLY=( --configuration )
IFS=$OIFS; return ;;
@@ -168,6 +165,9 @@
esac
_extra+=( --configuration )
;;
+ test)
+ COMPREPLY=( $(compgen -W "--tests --continue --rerun-tasks" -- "$cur") )
+ IFS=$OIFS; return ;;
dependencyInsight)
case "$prev" in
--configuration)