summaryrefslogtreecommitdiff
path: root/completions/pytest
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
commit5732da2af736c40cf693354485446ab4867ecb4d (patch)
tree76d76cdfa16ca62d20fb109da13895ec64fff110 /completions/pytest
parent9cd22d1df8f0f5b554858471c86faa9f37b8fed4 (diff)
downloadbash-completion-5732da2af736c40cf693354485446ab4867ecb4d.tar.gz
New upstream version 2.9upstream/2.9
Diffstat (limited to 'completions/pytest')
-rw-r--r--completions/pytest86
1 files changed, 86 insertions, 0 deletions
diff --git a/completions/pytest b/completions/pytest
new file mode 100644
index 00000000..9239766c
--- /dev/null
+++ b/completions/pytest
@@ -0,0 +1,86 @@
+# bash completion for pytest(1) -*- shell-script -*-
+
+_pytest()
+{
+ local cur prev words cword split
+ _init_completion -s || return
+
+ case $prev in
+ --help|--maxfail|--report|--junit-prefix|--doctest-glob|-!(-*)[hkmrp])
+ return
+ ;;
+ --import-mode)
+ COMPREPLY=( $(compgen -W "prepend append" -- "$cur") )
+ return
+ ;;
+ --capture)
+ COMPREPLY=( $(compgen -W "fd sys no" -- "$cur") )
+ return
+ ;;
+ --tb)
+ COMPREPLY=( $(compgen -W "auto long short line native no" \
+ -- "$cur") )
+ return
+ ;;
+ --color)
+ COMPREPLY=( $(compgen -W "yes no auto" -- "$cur") )
+ return
+ ;;
+ --pastebin)
+ COMPREPLY=( $(compgen -W "failed all" -- "$cur") )
+ return
+ ;;
+ --junit-xml)
+ _filedir xml
+ return
+ ;;
+ --result-log)
+ _filedir log
+ return
+ ;;
+ --ignore)
+ _filedir
+ return
+ ;;
+ --confcutdir|--basetemp|--rsyncdir)
+ _filedir -d
+ return
+ ;;
+ --assert)
+ COMPREPLY=( $(compgen -W "plain reinterp rewrite" -- "$cur") )
+ return
+ ;;
+ --genscript)
+ _filedir py
+ return
+ ;;
+ --pythonwarnings|-!(-*)W)
+ _xfunc python _python_warning_actions
+ return
+ ;;
+ --numprocesses|-!(-*)n)
+ COMPREPLY=( $(compgen -W "{1..$(_ncpus)} auto" -- "$cur") )
+ return
+ ;;
+ --dist)
+ local modes=$("$1" --dist=nonexistent-distmode 2>&1 | \
+ command sed -e 's/[^[:space:][:alnum:]-]\{1,\}//g' \
+ -ne 's/.*choose from //p')
+ COMPREPLY=( $(compgen -W '$modes' -- "$cur") )
+ return
+ ;;
+ esac
+
+ $split && return
+
+ if [[ "$cur" == -* ]]; then
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
+ [[ $COMPREPLY == *= ]] && compopt -o nospace
+ return
+ fi
+
+ _filedir py
+} &&
+complete -F _pytest pytest pytest-2 pytest-3 py.test py.test-2 py.test-3
+
+# ex: filetype=sh