1this derivation will be built:2 /nix/store/2l2mzz57gxkg25fgbawz74202s3gm9ap-shell-completion-test.drv3these 4 paths will be fetched (32.3 MiB download, 107.7 MiB unpacked):4 /nix/store/61aq2696hrasji4myn5cbybl7vm2mzny-fish-4.8.05 /nix/store/fzzxcn3li7vd7jf37ck09bifymw68xms-fish-4.8.0-doc6 /nix/store/n46i1nngcwinyml4xys5gzvhf4lqp23d-nushell-0.113.17 /nix/store/lcx7c9rfkqzfpa5kwh69yiad2wm06a0l-zsh-5.9.18building '/nix/store/2l2mzz57gxkg25fgbawz74202s3gm9ap-shell-completion-test.drv' on 'ssh-ng://nix@jamie'9building '/nix/store/2l2mzz57gxkg25fgbawz74202s3gm9ap-shell-completion-test.drv'10shell-completion-test> === Testing bash completion ===11shell-completion-test> _cntr is a function12shell-completion-test> _cntr () 13shell-completion-test> { 14shell-completion-test> local cur prev words cword;15shell-completion-test> _init_completion || return;16shell-completion-test> local subcommands="attach exec help version";17shell-completion-test> local common_opts="-t --type --apparmor -h --help -V --version";18shell-completion-test> local attach_opts="--effective-user";19shell-completion-test> local subcommand="";20shell-completion-test> local i;21shell-completion-test> for ((i = 1; i < cword; i++))22shell-completion-test> do23shell-completion-test> case "${words[i]}" in 24shell-completion-test> attach | exec | help | version)25shell-completion-test> subcommand="${words[i]}";26shell-completion-test> break27shell-completion-test> ;;28shell-completion-test> esac;29shell-completion-test> done;30shell-completion-test> case "$subcommand" in 31shell-completion-test> attach)32shell-completion-test> case "$prev" in 33shell-completion-test> -t | --type)34shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));35shell-completion-test> return36shell-completion-test> ;;37shell-completion-test> --apparmor)38shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));39shell-completion-test> return40shell-completion-test> ;;41shell-completion-test> --effective-user)42shell-completion-test> COMPREPLY=($(compgen -u -- "$cur"));43shell-completion-test> return44shell-completion-test> ;;45shell-completion-test> esac;46shell-completion-test> if [[ "$cur" == -* ]]; then47shell-completion-test> COMPREPLY=($(compgen -W "$common_opts $attach_opts" -- "$cur"));48shell-completion-test> else49shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));50shell-completion-test> fi51shell-completion-test> ;;52shell-completion-test> exec)53shell-completion-test> case "$prev" in 54shell-completion-test> -t | --type)55shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_container_types)" -- "$cur"));56shell-completion-test> return57shell-completion-test> ;;58shell-completion-test> --apparmor)59shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_apparmor_modes)" -- "$cur"));60shell-completion-test> return61shell-completion-test> ;;62shell-completion-test> esac;63shell-completion-test> if [[ "$cur" == -* ]]; then64shell-completion-test> COMPREPLY=($(compgen -W "$common_opts" -- "$cur"));65shell-completion-test> else66shell-completion-test> COMPREPLY=($(compgen -W "$(_cntr_containers)" -- "$cur"));67shell-completion-test> fi68shell-completion-test> ;;69shell-completion-test> help | version)70shell-completion-test> 71shell-completion-test> ;;72shell-completion-test> *)73shell-completion-test> COMPREPLY=($(compgen -W "$subcommands" -- "$cur"))74shell-completion-test> ;;75shell-completion-test> esac76shell-completion-test> }77shell-completion-test> Bash completions: attach exec help version78shell-completion-test> === Testing zsh completion ===79shell-completion-test> _arguments:comparguments:327: can only be called from completion function80shell-completion-test> === Testing fish completion ===81shell-completion-test> === Testing nushell completion ===82shell-completion-test> true8384post-build step Upload coverage to codecov: ok85Skipping codecov: project=Mic92/cntr attr=x86_64-linux.shell-completions