1this derivation will be built:2 /nix/store/6kmpihhhvba98vjzn9wzb8sqz6yprlxz-shell-completion-test.drv3these 2 paths will be fetched (14.9 MiB download, 65.3 MiB unpacked):4 /nix/store/6rf5daj415jnir6218pjk6b78phhx6pf-nushell-0.113.15 /nix/store/4wvhzvwmv2rnwgcg0sadhs769hky28xk-zsh-5.9.16building '/nix/store/6kmpihhhvba98vjzn9wzb8sqz6yprlxz-shell-completion-test.drv' on 'ssh-ng://nix@jamie'7building '/nix/store/6kmpihhhvba98vjzn9wzb8sqz6yprlxz-shell-completion-test.drv'8shell-completion-test> === Testing bash completion ===9shell-completion-test> _cntr is a function10shell-completion-test> _cntr () 11shell-completion-test> { 12shell-completion-test> local cur prev words cword;13shell-completion-test> _init_completion || return;14shell-completion-test> local subcommands="attach exec help version";15shell-completion-test> local common_opts="-t --type --apparmor -h --help -V --version";16shell-completion-test> local attach_opts="--effective-user";17shell-completion-test> local subcommand="";18shell-completion-test> local i;19shell-completion-test> for ((i = 1; i < cword; i++))20shell-completion-test> do21shell-completion-test> case "${words[i]}" in 22shell-completion-test> attach | exec | help | version)23shell-completion-test> subcommand="${words[i]}";24shell-completion-test> break25shell-completion-test> ;;26shell-completion-test> esac;27shell-completion-test> done;28shell-completion-test> case "$subcommand" in 29shell-completion-test> attach)30shell-completion-test> case "$prev" in 31shell-completion-test> -t | --type)32shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));33shell-completion-test> return34shell-completion-test> ;;35shell-completion-test> --apparmor)36shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));37shell-completion-test> return38shell-completion-test> ;;39shell-completion-test> --effective-user)40shell-completion-test> COMPREPLY=($(compgen -u -- "$cur"));41shell-completion-test> return42shell-completion-test> ;;43shell-completion-test> esac;44shell-completion-test> if [[ "$cur" == -* ]]; then45shell-completion-test> COMPREPLY=($(compgen -W "$common_opts $attach_opts" -- "$cur"));46shell-completion-test> else47shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));48shell-completion-test> fi49shell-completion-test> ;;50shell-completion-test> exec)51shell-completion-test> case "$prev" in 52shell-completion-test> -t | --type)53shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));54shell-completion-test> return55shell-completion-test> ;;56shell-completion-test> --apparmor)57shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));58shell-completion-test> return59shell-completion-test> ;;60shell-completion-test> esac;61shell-completion-test> if [[ "$cur" == -* ]]; then62shell-completion-test> COMPREPLY=($(compgen -W "$common_opts" -- "$cur"));63shell-completion-test> else64shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));65shell-completion-test> fi66shell-completion-test> ;;67shell-completion-test> help | version)68shell-completion-test> 69shell-completion-test> ;;70shell-completion-test> *)71shell-completion-test> COMPREPLY=($(compgen -W "$subcommands" -- "$cur"))72shell-completion-test> ;;73shell-completion-test> esac74shell-completion-test> }75shell-completion-test> Bash completions: attach exec help version76shell-completion-test> === Testing zsh completion ===77shell-completion-test> _arguments:comparguments:327: can only be called from completion function78shell-completion-test> === Testing fish completion ===79shell-completion-test> === Testing nushell completion ===80shell-completion-test> true8182post-build step Upload coverage to codecov: ok83Skipping codecov: project=Mic92/cntr attr=x86_64-linux.shell-completions