1this derivation will be built:2 /nix/store/nf8vjrl4asq7bf0qzpm74rfckifxmihb-shell-completion-test.drv3this path will be fetched (1.8 MiB download, 7.2 MiB unpacked):4 /nix/store/4wvhzvwmv2rnwgcg0sadhs769hky28xk-zsh-5.9.15building '/nix/store/nf8vjrl4asq7bf0qzpm74rfckifxmihb-shell-completion-test.drv' on 'ssh-ng://nix@jamie'6building '/nix/store/nf8vjrl4asq7bf0qzpm74rfckifxmihb-shell-completion-test.drv'7shell-completion-test> === Testing bash completion ===8shell-completion-test> _cntr is a function9shell-completion-test> _cntr () 10shell-completion-test> { 11shell-completion-test> local cur prev words cword;12shell-completion-test> _init_completion || return;13shell-completion-test> local subcommands="attach exec help version";14shell-completion-test> local common_opts="-t --type --apparmor -h --help -V --version";15shell-completion-test> local attach_opts="--effective-user";16shell-completion-test> local subcommand="";17shell-completion-test> local i;18shell-completion-test> for ((i = 1; i < cword; i++))19shell-completion-test> do20shell-completion-test> case "${words[i]}" in 21shell-completion-test> attach | exec | help | version)22shell-completion-test> subcommand="${words[i]}";23shell-completion-test> break24shell-completion-test> ;;25shell-completion-test> esac;26shell-completion-test> done;27shell-completion-test> case "$subcommand" in 28shell-completion-test> attach)29shell-completion-test> case "$prev" in 30shell-completion-test> -t | --type)31shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));32shell-completion-test> return33shell-completion-test> ;;34shell-completion-test> --apparmor)35shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));36shell-completion-test> return37shell-completion-test> ;;38shell-completion-test> --effective-user)39shell-completion-test> COMPREPLY=($(compgen -u -- "$cur"));40shell-completion-test> return41shell-completion-test> ;;42shell-completion-test> esac;43shell-completion-test> if [[ "$cur" == -* ]]; then44shell-completion-test> COMPREPLY=($(compgen -W "$common_opts $attach_opts" -- "$cur"));45shell-completion-test> else46shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));47shell-completion-test> fi48shell-completion-test> ;;49shell-completion-test> exec)50shell-completion-test> case "$prev" in 51shell-completion-test> -t | --type)52shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));53shell-completion-test> return54shell-completion-test> ;;55shell-completion-test> --apparmor)56shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));57shell-completion-test> return58shell-completion-test> ;;59shell-completion-test> esac;60shell-completion-test> if [[ "$cur" == -* ]]; then61shell-completion-test> COMPREPLY=($(compgen -W "$common_opts" -- "$cur"));62shell-completion-test> else63shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));64shell-completion-test> fi65shell-completion-test> ;;66shell-completion-test> help | version)67shell-completion-test> 68shell-completion-test> ;;69shell-completion-test> *)70shell-completion-test> COMPREPLY=($(compgen -W "$subcommands" -- "$cur"))71shell-completion-test> ;;72shell-completion-test> esac73shell-completion-test> }74shell-completion-test> Bash completions: attach exec help version75shell-completion-test> === Testing zsh completion ===76shell-completion-test> _arguments:comparguments:327: can only be called from completion function77shell-completion-test> === Testing fish completion ===78shell-completion-test> === Testing nushell completion ===79shell-completion-test> true8081post-build step Upload coverage to codecov: ok82Skipping codecov: project=Mic92/cntr attr=x86_64-linux.shell-completions