${PRINT_USAGE:-:} <<EOF
    untest            Deletes the control-repo branch from origin to disable puppet testing and clean up
EOF

command_untest() {
    valid_env_name $context || error "Invalid environment to delete. '${context}' is protected or otherwise invalid"
    pushd $workspace/control-repo || error 'could not cd to control-repo. what happened?'
    git push --delete origin $context
    popd
}
return 0
