1this derivation will be built:2 /nix/store/wj7cjyjwj27pl4cx7clh20pm9pl0qfwz-shell-completion-test.drv3building '/nix/store/wj7cjyjwj27pl4cx7clh20pm9pl0qfwz-shell-completion-test.drv' on 'ssh-ng://nix@jamie'4building '/nix/store/wj7cjyjwj27pl4cx7clh20pm9pl0qfwz-shell-completion-test.drv'5shell-completion-test> === Testing bash completion ===6shell-completion-test> _cntr is a function7shell-completion-test> _cntr () 8shell-completion-test> { 9shell-completion-test> local cur prev words cword;10shell-completion-test> _init_completion || return;11shell-completion-test> local subcommands="attach exec help version";12shell-completion-test> local common_opts="-t --type --apparmor -h --help -V --version";13shell-completion-test> local attach_opts="--effective-user";14shell-completion-test> local subcommand="";15shell-completion-test> local i;16shell-completion-test> for ((i = 1; i < cword; i++))17shell-completion-test> do18shell-completion-test> case "${words[i]}" in 19shell-completion-test> attach | exec | help | version)20shell-completion-test> subcommand="${words[i]}";21shell-completion-test> break22shell-completion-test> ;;23shell-completion-test> esac;24shell-completion-test> done;25shell-completion-test> case "$subcommand" in 26shell-completion-test> attach)27shell-completion-test> case "$prev" in 28shell-completion-test> -t | --type)29shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));30shell-completion-test> return31shell-completion-test> ;;32shell-completion-test> --apparmor)33shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));34shell-completion-test> return35shell-completion-test> ;;36shell-completion-test> --effective-user)37shell-completion-test> COMPREPLY=($(compgen -u -- "$cur"));38shell-completion-test> return39shell-completion-test> ;;40shell-completion-test> esac;41shell-completion-test> if [[ "$cur" == -* ]]; then42shell-completion-test> COMPREPLY=($(compgen -W "$common_opts $attach_opts" -- "$cur"));43shell-completion-test> else44shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));45shell-completion-test> fi46shell-completion-test> ;;47shell-completion-test> exec)48shell-completion-test> case "$prev" in 49shell-completion-test> -t | --type)50shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));51shell-completion-test> return52shell-completion-test> ;;53shell-completion-test> --apparmor)54shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));55shell-completion-test> return56shell-completion-test> ;;57shell-completion-test> esac;58shell-completion-test> if [[ "$cur" == -* ]]; then59shell-completion-test> COMPREPLY=($(compgen -W "$common_opts" -- "$cur"));60shell-completion-test> else61shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));62shell-completion-test> fi63shell-completion-test> ;;64shell-completion-test> help | version)65shell-completion-test> 66shell-completion-test> ;;67shell-completion-test> *)68shell-completion-test> COMPREPLY=($(compgen -W "$subcommands" -- "$cur"))69shell-completion-test> ;;70shell-completion-test> esac71shell-completion-test> }72shell-completion-test> Bash completions: attach exec help version73shell-completion-test> === Testing zsh completion ===74shell-completion-test> _arguments:comparguments:327: can only be called from completion function75shell-completion-test> === Testing fish completion ===76shell-completion-test> === Testing nushell completion ===77shell-completion-test> true7879post-build step Upload coverage to codecov: ok80Skipping codecov: project=Mic92/cntr attr=x86_64-linux.shell-completions