├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── build-binaries │ │ ├── linux │ │ │ └── action.yaml │ │ ├── macos │ │ │ └── action.yaml │ │ └── windows │ │ │ └── action.yaml │ ├── install-apple-dev-id-cert │ │ └── action.yaml │ └── setup-poetry │ │ └── action.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-binaries.yaml │ ├── build-python.yaml │ ├── cd.yaml │ ├── check-python.yaml │ ├── clear-caches.yaml │ ├── pr.yaml │ └── publish-release-packages.yaml ├── .gitignore ├── .idea └── runConfigurations │ └── Run_AlgoKit_CLI.xml ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── debug.py ├── docs ├── algokit.md ├── architecture-decisions │ ├── 2022-11-14_sandbox-approach.md │ ├── 2022-11-22_beaker-testing-strategy.md │ ├── 2023-01-11_beaker_productionisation_review.md │ ├── 2023-01-11_brew_install.md │ ├── 2023-01-12_smart-contract-deployment.md │ ├── 2023-06-06_frontend-templates.md │ ├── 2023-07-19_advanced_generate_command.md │ ├── 2024-01-13_native_binaries.md │ ├── 2024-01-23_init-wizard-v2.md │ ├── 2024-01-31_binary_distribution.md │ ├── 2024-03-06_local_dev_ui_packaging.md │ ├── assets │ │ ├── 2023-06-06_frontend-templates │ │ │ ├── modular_templates.jpg │ │ │ ├── scenario_1.jpg │ │ │ └── scenario_2.jpg │ │ └── 2024-01-13_native_binaries │ │ │ ├── image_1.png │ │ │ └── image_2.png │ └── lifecycle.jpg ├── articles │ └── output_stability.md ├── cli │ └── index.md ├── features │ ├── compile.md │ ├── completions.md │ ├── config.md │ ├── dispenser.md │ ├── doctor.md │ ├── explore.md │ ├── generate.md │ ├── goal.md │ ├── init.md │ ├── localnet.md │ ├── project.md │ ├── project │ │ ├── bootstrap.md │ │ ├── deploy.md │ │ ├── link.md │ │ ├── list.md │ │ └── run.md │ ├── tasks.md │ └── tasks │ │ ├── analyze.md │ │ ├── ipfs.md │ │ ├── mint.md │ │ ├── nfd.md │ │ ├── opt.md │ │ ├── send.md │ │ ├── sign.md │ │ ├── transfer.md │ │ ├── vanity_address.md │ │ └── wallet.md ├── imgs │ ├── algokit-intro-video-thumbnail.jpg │ ├── algokit-map.png │ ├── algokitartifacts.png │ ├── algokitcodetour.png │ ├── algokitplayground.png │ ├── banner.png │ └── localnet.png ├── sphinx │ ├── conf.py │ └── index.rst └── tutorials │ ├── algokit-template.md │ ├── intro.md │ └── smart-contracts.md ├── entitlements.xml ├── misc └── multiformats_config │ ├── multibase-table.json │ └── multicodec-table.json ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── scripts ├── package_mac.sh ├── package_windows.bat ├── snap │ └── create-snapcraft-yaml.sh ├── update-brew-cask.sh └── winget │ ├── build-installer.ps1 │ ├── installer │ ├── AppxManifest.xml │ ├── assets │ │ ├── Square150x150Logo.png │ │ ├── Square44x44Logo.png │ │ ├── Square44x44Logo.targetsize-44.png │ │ ├── Square44x44Logo.targetsize-44_altform-unplated.png │ │ └── Square70x70Logo.png │ └── priconfig.xml │ └── update-package.ps1 ├── src └── algokit │ ├── __init__.py │ ├── __main__.py │ ├── cli │ ├── __init__.py │ ├── codespace.py │ ├── common │ │ ├── __init__.py │ │ ├── constants.py │ │ └── utils.py │ ├── compile.py │ ├── compilers │ │ ├── __init__.py │ │ ├── python.py │ │ └── typescript.py │ ├── completions.py │ ├── config.py │ ├── dispenser.py │ ├── doctor.py │ ├── explore.py │ ├── generate.py │ ├── goal.py │ ├── init │ │ ├── __init__.py │ │ ├── command.py │ │ ├── example.py │ │ └── helpers.py │ ├── localnet.py │ ├── project │ │ ├── __init__.py │ │ ├── bootstrap.py │ │ ├── deploy.py │ │ ├── link.py │ │ ├── list.py │ │ └── run.py │ ├── task.py │ ├── tasks │ │ ├── __init__.py │ │ ├── analyze.py │ │ ├── assets.py │ │ ├── ipfs.py │ │ ├── mint.py │ │ ├── nfd.py │ │ ├── send_transaction.py │ │ ├── sign_transaction.py │ │ ├── transfer.py │ │ ├── utils.py │ │ ├── vanity_address.py │ │ └── wallet.py │ └── tui │ │ ├── __init__.py │ │ └── init │ │ ├── __init__.py │ │ ├── example_selector.py │ │ └── screens │ │ ├── __init__.py │ │ └── example_selector_screen.py │ ├── core │ ├── __init__.py │ ├── _vendor │ │ ├── __init__.py │ │ └── auth0 │ │ │ ├── __init__.py │ │ │ └── authentication │ │ │ ├── __init__.py │ │ │ └── token_verifier.py │ ├── atomic_write.py │ ├── codespace.py │ ├── compilers │ │ ├── python.py │ │ └── typescript.py │ ├── conf.py │ ├── config_commands │ │ ├── __init__.py │ │ ├── container_engine.py │ │ ├── js_package_manager.py │ │ ├── py_package_manager.py │ │ └── version_prompt.py │ ├── dispenser.py │ ├── doctor.py │ ├── generate.py │ ├── goal.py │ ├── init.py │ ├── log_handlers.py │ ├── proc.py │ ├── project │ │ ├── __init__.py │ │ ├── bootstrap.py │ │ ├── deploy.py │ │ └── run.py │ ├── questionary_extensions.py │ ├── sandbox.py │ ├── tasks │ │ ├── __init__.py │ │ ├── analyze.py │ │ ├── ipfs.py │ │ ├── mint │ │ │ ├── __init__.py │ │ │ ├── mint.py │ │ │ └── models.py │ │ ├── nfd.py │ │ ├── vanity_address.py │ │ └── wallet.py │ ├── typed_client_generation.py │ └── utils.py │ ├── py.typed │ └── resources │ └── distribution-method └── tests ├── __init__.py ├── compile ├── __init__.py ├── conftest.py ├── test_python.py ├── test_python.test_compile_py_help.approved.txt ├── test_python.test_puyapy_is_installed_globally.approved.txt ├── test_python.test_puyapy_is_installed_in_project.approved.txt ├── test_python.test_puyapy_is_not_installed_anywhere.approved.txt ├── test_python.test_specificed_puyapy_version_is_not_installed.approved.txt ├── test_typescript.py ├── test_typescript.test_compile_py_help.approved.txt ├── test_typescript.test_puyats_is_installed_globally.approved.txt ├── test_typescript.test_puyats_is_installed_in_project.approved.txt ├── test_typescript.test_puyats_is_not_installed_anywhere.approved.txt └── test_typescript.test_specificed_puyats_version_is_not_installed.approved.txt ├── completions ├── __init__.py ├── test_completions.py ├── test_completions.test_completions_help.approved.txt ├── test_completions.test_completions_install_handles_config_outside_home.approved.txt ├── test_completions.test_completions_install_handles_no_profile.approved.txt ├── test_completions.test_completions_install_handles_unsupported_bash_gracefully.approved.txt ├── test_completions.test_completions_install_is_idempotent.approved.txt ├── test_completions.test_completions_installs_correctly_with_detected_shell.approved.txt ├── test_completions.test_completions_installs_correctly_with_specified_shell.bash.approved.txt ├── test_completions.test_completions_installs_correctly_with_specified_shell.zsh.approved.txt ├── test_completions.test_completions_subcommands_help.install.approved.txt ├── test_completions.test_completions_subcommands_help.uninstall.approved.txt ├── test_completions.test_completions_subcommands_with_unknown_shell_fails_gracefully.install.approved.txt ├── test_completions.test_completions_subcommands_with_unknown_shell_fails_gracefully.uninstall.approved.txt ├── test_completions.test_completions_subcommands_with_unsupported_shell_fails_gracefully.install.approved.txt ├── test_completions.test_completions_subcommands_with_unsupported_shell_fails_gracefully.uninstall.approved.txt ├── test_completions.test_completions_uninstall_handles_no_profile.approved.txt ├── test_completions.test_completions_uninstall_is_idempotent.approved.txt ├── test_completions.test_completions_uninstalls_correctly.bash.approved.txt └── test_completions.test_completions_uninstalls_correctly.zsh.approved.txt ├── config ├── __init__.py ├── test_package_managers.py ├── test_package_managers.test_js_package_manager_help.approved.txt ├── test_package_managers.test_js_package_manager_invalid_argument.approved.txt ├── test_package_managers.test_js_package_manager_set_npm.approved.txt ├── test_package_managers.test_js_package_manager_set_pnpm.approved.txt ├── test_package_managers.test_py_package_manager_help.approved.txt ├── test_package_managers.test_py_package_manager_invalid_argument.approved.txt ├── test_package_managers.test_py_package_manager_set_poetry.approved.txt └── test_package_managers.test_py_package_manager_set_uv.approved.txt ├── conftest.py ├── dispenser ├── TestFundCommand.test_fund_command_address_invalid.approved.txt ├── TestFundCommand.test_fund_command_alias_invalid.approved.txt ├── TestFundCommand.test_fund_command_from_alias_successful.approved.txt ├── TestFundCommand.test_fund_command_http_error.approved.txt ├── TestFundCommand.test_fund_command_invalid_args.approved.txt ├── TestFundCommand.test_fund_command_not_authenticated.approved.txt ├── TestFundCommand.test_fund_command_success.False.False.approved.txt ├── TestFundCommand.test_fund_command_success.False.True.approved.txt ├── TestFundCommand.test_fund_command_success.True.False.approved.txt ├── TestFundCommand.test_fund_command_success.True.True.approved.txt ├── TestLimitCommand.test_limit_command_http_error.approved.txt ├── TestLimitCommand.test_limit_command_not_authenticated.approved.txt ├── TestLimitCommand.test_limit_command_success.False.False.approved.txt ├── TestLimitCommand.test_limit_command_success.False.True.approved.txt ├── TestLimitCommand.test_limit_command_success.True.False.approved.txt ├── TestLimitCommand.test_limit_command_success.True.True.approved.txt ├── TestLoginCommand.test_login_command_already_logged_in.approved.txt ├── TestLoginCommand.test_login_command_cancelled_timeout.approved.txt ├── TestLoginCommand.test_login_command_expired_token_refresh.False.approved.txt ├── TestLoginCommand.test_login_command_expired_token_refresh.True.approved.txt ├── TestLoginCommand.test_login_command_success_ci.file.None.approved.txt ├── TestLoginCommand.test_login_command_success_ci.file.custom_file.txt.approved.txt ├── TestLoginCommand.test_login_command_success_ci.stdout.None.approved.txt ├── TestLoginCommand.test_login_command_success_user.approved.txt ├── TestLogoutCommand.test_logout_command_already_logged_out.approved.txt ├── TestLogoutCommand.test_logout_command_revoke_exception.approved.txt ├── TestLogoutCommand.test_logout_command_success.approved.txt ├── TestRefundCommand.test_refund_command_http_error.approved.txt ├── TestRefundCommand.test_refund_command_invalid_args.approved.txt ├── TestRefundCommand.test_refund_command_not_authenticated.approved.txt ├── TestRefundCommand.test_refund_command_success.False.approved.txt ├── TestRefundCommand.test_refund_command_success.True.approved.txt └── test_dispenser.py ├── doctor ├── __init__.py ├── test_doctor.py ├── test_doctor.test_doctor_all_commands_bad_exit[linux].approved.txt ├── test_doctor.test_doctor_all_commands_bad_exit[macOS].approved.txt ├── test_doctor.test_doctor_all_commands_bad_exit[windows].approved.txt ├── test_doctor.test_doctor_all_commands_not_found[linux].approved.txt ├── test_doctor.test_doctor_all_commands_not_found[macOS].approved.txt ├── test_doctor.test_doctor_all_commands_not_found[windows].approved.txt ├── test_doctor.test_doctor_help.approved.txt ├── test_doctor.test_doctor_successful[linux].approved.txt ├── test_doctor.test_doctor_successful[macOS].approved.txt ├── test_doctor.test_doctor_successful[windows].approved.txt ├── test_doctor.test_doctor_with_copy.approved.txt ├── test_doctor.test_doctor_with_docker_compose_version_gitpod.approved.txt ├── test_doctor.test_doctor_with_docker_compose_version_unparseable.approved.txt ├── test_doctor.test_doctor_with_docker_compose_version_warning.approved.txt ├── test_doctor.test_doctor_with_weird_values_on_mac.approved.txt ├── test_doctor.test_doctor_with_weird_values_on_windows.approved.txt ├── test_doctor.test_new_algokit_version_available.approved.txt ├── test_doctor.test_npm_permission_denied.approved.txt ├── test_doctor.test_unexpected_exception_locating_executable.approved.txt └── test_doctor.test_unparseable_python_version.approved.txt ├── explore ├── __init__.py ├── test_explore.py ├── test_explore.test_explore.localnet.approved.txt ├── test_explore.test_explore.mainnet.approved.txt └── test_explore.test_explore.testnet.approved.txt ├── generate ├── __init__.py ├── app.arc32.json ├── app.arc56.json ├── application.json ├── test_generate_client.py ├── test_generate_client.test_generate_client_no_app_spec_found.approved.txt ├── test_generate_client.test_generate_client_output_path_is_dir.approved.txt ├── test_generate_client.test_generate_client_python[--output {contract_name}.py-hello_world_app.py].approved.txt ├── test_generate_client.test_generate_client_python[-l python -v 1.1.0-hello_world_app_client.py].approved.txt ├── test_generate_client.test_generate_client_python[-l python-hello_world_app_client.py].approved.txt ├── test_generate_client.test_generate_client_python[-o client.py --language python --version 1.1.2-client.py].approved.txt ├── test_generate_client.test_generate_client_python[-o client.py -p --mode minimal-client.py].approved.txt ├── test_generate_client.test_generate_client_python[-o client.py-client.py].approved.txt ├── test_generate_client.test_generate_client_python[-o client.ts --language python-client.ts].approved.txt ├── test_generate_client.test_generate_client_python_arc32_filename.-o.client.py.approved.txt ├── test_generate_client.test_generate_client_python_arc56_filename.-o.client.py.approved.txt ├── test_generate_client.test_generate_client_python_multiple_app_specs_in_directory.-o.client.py.approved.txt ├── test_generate_client.test_generate_client_recursive.approved.txt ├── test_generate_client.test_generate_client_typescript[linux---output {contract_name}.ts-HelloWorldApp.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--l typescript -v 2.6.0-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--l typescript-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--o client.py --language typescript-client.py].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--o client.ts --language typescript --version 3.0.0-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--o client.ts -pn --mode minimal-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[linux--o client.ts-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS---output {contract_name}.ts-HelloWorldApp.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--l typescript -v 2.6.0-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--l typescript-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--o client.py --language typescript-client.py].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--o client.ts --language typescript --version 3.0.0-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--o client.ts -pn --mode minimal-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[macOS--o client.ts-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows---output {contract_name}.ts-HelloWorldApp.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--l typescript -v 2.6.0-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--l typescript-HelloWorldAppClient.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--o client.py --language typescript-client.py].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--o client.ts --language typescript --version 3.0.0-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--o client.ts -pn --mode minimal-client.ts].approved.txt ├── test_generate_client.test_generate_client_typescript[windows--o client.ts-client.ts].approved.txt ├── test_generate_client.test_generate_help.approved.txt ├── test_generate_client.test_generate_no_options.approved.txt ├── test_generate_client.test_npx_failed[linux].approved.txt ├── test_generate_client.test_npx_failed[macOS].approved.txt ├── test_generate_client.test_npx_failed[windows].approved.txt ├── test_generate_client.test_npx_missing.approved.txt ├── test_generate_client.test_pipx_missing.approved.txt ├── test_generate_client.test_python_generator_is_installed_globally.approved.txt ├── test_generate_client.test_python_generator_is_installed_in_project.approved.txt ├── test_generate_client.test_python_generator_version_is_not_installed_anywhere.approved.txt ├── test_generate_client.test_typescript_generator_is_installed_globally[linux].approved.txt ├── test_generate_client.test_typescript_generator_is_installed_globally[macOS].approved.txt ├── test_generate_client.test_typescript_generator_is_installed_globally[windows].approved.txt ├── test_generate_client.test_typescript_generator_is_installed_in_project[linux].approved.txt ├── test_generate_client.test_typescript_generator_is_installed_in_project[macOS].approved.txt ├── test_generate_client.test_typescript_generator_is_installed_in_project[windows].approved.txt ├── test_generate_client.test_typescript_generator_version_is_not_installed_anywhere[linux].approved.txt ├── test_generate_client.test_typescript_generator_version_is_not_installed_anywhere[macOS].approved.txt ├── test_generate_client.test_typescript_generator_version_is_not_installed_anywhere[windows].approved.txt ├── test_generate_custom_generate_commands.py ├── test_generate_custom_generate_commands.test_generate_custom_generate_command_missing_git_valid_generator.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_command_no_git_valid_generator.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_invalid_generic_generator.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_no_toml.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_valid_generator.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_valid_generator_invalid_path.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_valid_generator_no_description.approved.txt ├── test_generate_custom_generate_commands.test_generate_custom_generate_commands_valid_generator_run.approved.txt └── test_generate_custom_generate_commands.test_generate_custom_generate_commands_valid_generator_run_with_python_path.approved.txt ├── goal ├── __init__.py ├── test_goal.py ├── test_goal.test_goal_complex_args.approved.txt ├── test_goal.test_goal_compose_outdated.approved.txt ├── test_goal.test_goal_console.approved.txt ├── test_goal.test_goal_console_algod_not_created.approved.txt ├── test_goal.test_goal_console_failed.approved.txt ├── test_goal.test_goal_help.approved.txt ├── test_goal.test_goal_no_args.approved.txt ├── test_goal.test_goal_simple_args.approved.txt ├── test_goal.test_goal_simple_args_on_named_localnet.approved.txt ├── test_goal.test_goal_simple_args_with_input_file.approved.txt ├── test_goal.test_goal_simple_args_with_input_output_files.approved.txt ├── test_goal.test_goal_simple_args_with_input_output_files_with_dot_convention_name.approved.txt ├── test_goal.test_goal_simple_args_with_multiple_input_output_files.approved.txt ├── test_goal.test_goal_simple_args_with_output_file.approved.txt ├── test_goal.test_goal_simple_args_without_file_error.approved.txt ├── test_goal.test_goal_start_without_docker.approved.txt └── test_goal.test_goal_start_without_docker_engine_running.approved.txt ├── init ├── __init__.py ├── copier-helloworld.bundle ├── example │ ├── __init__.py │ ├── test_example.py │ ├── test_example.test_example_command_help.approved.txt │ ├── test_example.test_example_command_list_option.approved.txt │ ├── test_example.test_example_command_tui_select_nothing.approved.txt │ ├── test_example.test_example_command_tui_select_valid.approved.txt │ ├── test_example.test_example_command_tui_select_valid_but_source_missing.approved.txt │ ├── test_example.test_example_command_with_invalid_id.approved.txt │ ├── test_example.test_example_command_with_valid_id.approved.txt │ └── test_example.test_example_command_with_valid_id_source_not_exist.approved.txt ├── test_init.py ├── test_init.test_init_ask_about_git.approved.txt ├── test_init.test_init_blessed_template_url_get_community_warning.approved.txt ├── test_init.test_init_bootstrap_no.approved.txt ├── test_init.test_init_bootstrap_yes.approved.txt ├── test_init.test_init_do_not_use_existing_folder.approved.txt ├── test_init.test_init_existing_filename_same_as_folder_name.approved.txt ├── test_init.test_init_help.approved.txt ├── test_init.test_init_input_template_url.approved.txt ├── test_init.test_init_invalid_template_url.approved.txt ├── test_init.test_init_minimal_interaction_required_no_git_no_network_no_bootstrap.approved.txt ├── test_init.test_init_minimal_interaction_required_yes_git_no_network.approved.txt ├── test_init.test_init_missing_git.approved.txt ├── test_init.test_init_no_community_template.approved.txt ├── test_init.test_init_no_interaction_required_defaults_no_git_no_network.approved.txt ├── test_init.test_init_no_interaction_required_no_git_no_network.approved.txt ├── test_init.test_init_no_interaction_required_no_git_no_network_with_no_ide.approved.txt ├── test_init.test_init_no_interaction_required_no_git_no_network_with_vscode.approved.txt ├── test_init.test_init_no_interaction_required_no_git_no_network_with_vscode_and_readme.approved.txt ├── test_init.test_init_project_name.approved.txt ├── test_init.test_init_project_name_not_empty.approved.txt ├── test_init.test_init_project_name_reenter_folder_name.approved.txt ├── test_init.test_init_template_selection.approved.txt ├── test_init.test_init_template_url_and_template_name.approved.txt ├── test_init.test_init_template_with_python_task_fails_on_missing_python.approved.txt ├── test_init.test_init_template_with_python_task_works.approved.txt ├── test_init.test_init_use_existing_folder.approved.txt ├── test_init.test_init_with_any_template_url_get_community_warning.approved.txt ├── test_init.test_init_with_any_template_url_get_community_warning_with_unsafe_tag.approved.txt ├── test_init.test_init_with_custom_env.approved.txt ├── test_init.test_init_with_official_template_name.approved.txt ├── test_init.test_init_with_official_template_name_and_hash.approved.txt ├── test_init.test_init_wizard_v2_append_to_vscode_workspace.approved.txt ├── test_init.test_init_wizard_v2_flow.Custom Template.approved.txt ├── test_init.test_init_wizard_v2_flow.DApp Frontend.approved.txt ├── test_init.test_init_wizard_v2_flow.Full Stack.approved.txt ├── test_init.test_init_wizard_v2_flow.Smart Contract.approved.txt ├── test_init.test_init_wizard_v2_github_folder_no_workspace.approved.txt ├── test_init.test_init_wizard_v2_github_folder_with_workspace.approved.txt ├── test_init.test_invalid_name.approved.txt ├── test_init_with_bootstrap.py ├── test_init_with_bootstrap.test_init_bootstrap_broken_poetry.approved.txt └── test_init_with_bootstrap.test_init_bootstrap_version_fail.approved.txt ├── localnet ├── __init__.py ├── conftest.py ├── test_localnet.py ├── test_localnet.test_localnet_help.approved.txt ├── test_localnet_codespace.py ├── test_localnet_codespace.test_install_gh_not_installed_failed_install.approved.txt ├── test_localnet_codespace.test_install_gh_unix.approved.txt ├── test_localnet_codespace.test_install_gh_windows.approved.txt ├── test_localnet_codespace.test_invalid_scope_auth.approved.txt ├── test_localnet_console.py ├── test_localnet_console.test_goal_console.approved.txt ├── test_localnet_reset.py ├── test_localnet_reset.test_localnet_reset_with_existing_sandbox_with_out_of_date_config.approved.txt ├── test_localnet_reset.test_localnet_reset_with_existing_sandbox_with_up_to_date_config.approved.txt ├── test_localnet_reset.test_localnet_reset_with_existing_sandbox_with_up_to_date_config_with_pull.approved.txt ├── test_localnet_reset.test_localnet_reset_with_named_sandbox_config.approved.txt ├── test_localnet_reset.test_localnet_reset_without_docker.approved.txt ├── test_localnet_reset.test_localnet_reset_without_docker_compose.approved.txt ├── test_localnet_reset.test_localnet_reset_without_docker_engine_running.approved.txt ├── test_localnet_reset.test_localnet_reset_without_existing_sandbox.approved.txt ├── test_localnet_start.py ├── test_localnet_start.test_localnet_img_check_cmd_error.approved.txt ├── test_localnet_start.test_localnet_start.approved.txt ├── test_localnet_start.test_localnet_start_failure.approved.txt ├── test_localnet_start.test_localnet_start_health_bad_status.approved.txt ├── test_localnet_start.test_localnet_start_health_failure.approved.txt ├── test_localnet_start.test_localnet_start_out_date.approved.txt ├── test_localnet_start.test_localnet_start_out_of_date_definition.approved.txt ├── test_localnet_start.test_localnet_start_out_of_date_definition_and_missing_config.approved.txt ├── test_localnet_start.test_localnet_start_up_to_date_definition.approved.txt ├── test_localnet_start.test_localnet_start_with_custom_config_dir.approved.txt ├── test_localnet_start.test_localnet_start_with_gitpod_docker_compose_version.approved.txt ├── test_localnet_start.test_localnet_start_with_name.approved.txt ├── test_localnet_start.test_localnet_start_with_no_dev_mode.approved.txt ├── test_localnet_start.test_localnet_start_with_old_docker_compose_version.approved.txt ├── test_localnet_start.test_localnet_start_with_unparseable_docker_compose_version.approved.txt ├── test_localnet_start.test_localnet_start_without_docker.approved.txt ├── test_localnet_start.test_localnet_start_without_docker_compose.approved.txt ├── test_localnet_start.test_localnet_start_without_docker_engine_running.approved.txt ├── test_localnet_status.py ├── test_localnet_status.test_localnet_status_docker_error.approved.txt ├── test_localnet_status.test_localnet_status_failure.approved.txt ├── test_localnet_status.test_localnet_status_http_error.approved.txt ├── test_localnet_status.test_localnet_status_missing_service.approved.txt ├── test_localnet_status.test_localnet_status_no_existing_definition.approved.txt ├── test_localnet_status.test_localnet_status_service_not_started.approved.txt ├── test_localnet_status.test_localnet_status_successful.approved.txt ├── test_localnet_status.test_localnet_status_unexpected_port.approved.txt ├── test_localnet_status.test_localnet_status_without_docker.approved.txt ├── test_localnet_status.test_localnet_status_without_docker_compose.approved.txt ├── test_localnet_status.test_localnet_status_without_docker_engine_running.approved.txt ├── test_localnet_stop.py ├── test_localnet_stop.test_localnet_stop.approved.txt ├── test_localnet_stop.test_localnet_stop_failure.approved.txt ├── test_localnet_stop.test_localnet_stop_no_existing_definition.approved.txt ├── test_localnet_stop.test_localnet_stop_with_name.approved.txt ├── test_localnet_stop.test_localnet_stop_without_docker.approved.txt ├── test_localnet_stop.test_localnet_stop_without_docker_compose.approved.txt ├── test_localnet_stop.test_localnet_stop_without_docker_engine_running.approved.txt ├── test_sandbox.py ├── test_sandbox.test_algod_network_template_json.approved.txt ├── test_sandbox.test_get_conduit_yaml.approved.txt ├── test_sandbox.test_get_config_json.approved.txt ├── test_sandbox.test_get_docker_compose_yml.approved.txt └── test_sandbox.test_proxy_config.approved.txt ├── portability └── test_pyinstaller_binary.py ├── project ├── __init__.py ├── bootstrap │ ├── __init__.py │ ├── test_bootstrap.py │ ├── test_bootstrap.test_bootstrap_help.approved.txt │ ├── test_bootstrap_all.py │ ├── test_bootstrap_all.test_bootstrap_all_algokit_min_version.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_algokit_min_version_ignore_error.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_empty.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_env.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_npm[linux].approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_npm[macOS].approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_npm[windows].approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_poetry.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_poetry_via_pyproject.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_filter.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_filter_not_found.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_name_filter.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_name_filter_not_found.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_type_filter.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_projects_type_filter_not_found.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_skip_dirs.approved.txt │ ├── test_bootstrap_all.test_bootstrap_all_sub_dir.approved.txt │ ├── test_bootstrap_env.py │ ├── test_bootstrap_env.test_bootstrap_env_dotenv_different_prompt_scenarios.approved.txt │ ├── test_bootstrap_env.test_bootstrap_env_dotenv_exists.approved.txt │ ├── test_bootstrap_env.test_bootstrap_env_dotenv_missing_template_exists.approved.txt │ ├── test_bootstrap_env.test_bootstrap_env_dotenv_with_values.approved.txt │ ├── test_bootstrap_env.test_bootstrap_env_multiple_templates.approved.txt │ ├── test_bootstrap_env.test_bootstrap_env_no_files.approved.txt │ ├── test_bootstrap_env.test_bootstrap_network_prefixed_env_dotenv_exists.approved.txt │ ├── test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.approved.txt │ ├── test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.localnet.approved.txt │ ├── test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.localnet.template.approved.txt │ ├── test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.template.approved.txt │ ├── test_bootstrap_npm.py │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[windows].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_without_lock_file[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_without_lock_file[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_ci_mode_without_lock_file[windows].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_happy_path[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_happy_path[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_happy_path[windows].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm[windows].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm_and_package_file[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm_and_package_file[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_npm_and_package_file[windows].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_package_file[linux].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_package_file[macOS].approved.txt │ ├── test_bootstrap_npm.test_bootstrap_npm_without_package_file[windows].approved.txt │ ├── test_bootstrap_package_manager_selection.py │ ├── test_bootstrap_package_manager_selection.test_bootstrap_respects_configured_package_managers[linux].approved.txt │ ├── test_bootstrap_package_manager_selection.test_bootstrap_respects_configured_package_managers[macOS].approved.txt │ ├── test_bootstrap_package_manager_selection.test_bootstrap_respects_configured_package_managers[windows].approved.txt │ ├── test_bootstrap_package_manager_selection.test_interactive_prompt_fallback_with_preference_saving.approved.txt │ ├── test_bootstrap_package_manager_selection.test_project_override_takes_precedence_over_user_preference.approved.txt │ ├── test_bootstrap_package_manager_selection.test_project_override_takes_precedence_over_user_preference[linux].approved.txt │ ├── test_bootstrap_package_manager_selection.test_project_override_takes_precedence_over_user_preference[macOS].approved.txt │ ├── test_bootstrap_package_manager_selection.test_project_override_takes_precedence_over_user_preference[windows].approved.txt │ ├── test_bootstrap_package_manager_selection.test_smart_defaults_when_no_user_preference.approved.txt │ ├── test_bootstrap_pnpm.py │ ├── test_bootstrap_pnpm.test_bootstrap_pnpm_ci_mode_without_lock_file.approved.txt │ ├── test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[linux].approved.txt │ ├── test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[macOS].approved.txt │ ├── test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[windows].approved.txt │ ├── test_bootstrap_pnpm.test_bootstrap_pnpm_without_package_file.approved.txt │ ├── test_bootstrap_poetry.py │ ├── test_bootstrap_poetry.test_bootstrap_poetry_with_poetry.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_failed_install.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_failed_poetry_path.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path[no_system_pythons].approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path[python3_only].approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path[python_and_python3].approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path[python_only].approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path_failed_install.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path_failed_poetry_path.approved.txt │ ├── test_bootstrap_poetry.test_bootstrap_poetry_without_poetry_or_pipx_path_or_pipx_module.approved.txt │ ├── test_bootstrap_translation.py │ ├── test_bootstrap_uv.py │ ├── test_bootstrap_uv.test_bootstrap_uv_happy_path.approved.txt │ ├── test_bootstrap_uv.test_bootstrap_uv_poetry_project_migration_declined.approved.txt │ ├── test_bootstrap_uv.test_bootstrap_uv_user_declines_install.approved.txt │ └── test_precedence_hierarchy.py ├── deploy │ ├── __init__.py │ ├── test_deploy.py │ ├── test_deploy.test_algokit_config_empty_array.approved.txt │ ├── test_deploy.test_algokit_config_invalid_syntax.approved.txt │ ├── test_deploy.test_algokit_config_name_no_base.approved.txt │ ├── test_deploy.test_algokit_config_name_overrides.approved.txt │ ├── test_deploy.test_algokit_deploy_only_base_deploy_config.approved.txt │ ├── test_deploy.test_algokit_env_and_name_correct_set.approved.txt │ ├── test_deploy.test_algokit_env_name_missing.approved.txt │ ├── test_deploy.test_ci_flag_interactivity_mode_via_cli.approved.txt │ ├── test_deploy.test_ci_flag_interactivity_mode_via_env.approved.txt │ ├── test_deploy.test_command_bad_exit_code.approved.txt │ ├── test_deploy.test_command_invocation_and_command_splitting.approved.txt │ ├── test_deploy.test_command_not_executable.approved.txt │ ├── test_deploy.test_command_not_found_and_no_config.approved.txt │ ├── test_deploy.test_command_splitting_from_config.approved.txt │ ├── test_deploy.test_command_without_splitting_from_config.approved.txt │ ├── test_deploy.test_deploy_custom_project_dir.approved.txt │ ├── test_deploy.test_deploy_dispenser_alias.deployer.approved.txt │ ├── test_deploy.test_deploy_dispenser_alias.dispenser.approved.txt │ ├── test_deploy.test_deploy_shutil_command_not_found.approved.txt │ ├── test_deploy.test_deploy_windows_command_not_found.approved.txt │ ├── test_deploy.test_deploy_with_extra_args.approved.txt │ ├── test_deploy.test_deploy_with_extra_args_and_custom_command.approved.txt │ └── test_deploy.test_secrets_prompting_via_stdin.approved.txt ├── link │ ├── application.json │ ├── test_link.py │ ├── test_link.test_link_command_all_success.approved.txt │ ├── test_link.test_link_command_by_name_success.approved.txt │ ├── test_link.test_link_command_empty_folder.approved.txt │ ├── test_link.test_link_command_multiple_names_no_specs_success.approved.txt │ ├── test_link.test_link_command_multiple_names_success.approved.txt │ ├── test_link.test_link_command_name_not_found.approved.txt │ ├── test_link.test_link_runtime_error.approved.txt │ └── test_link.test_list_command_from_workspace_success.approved.txt ├── list │ ├── test_list.py │ ├── test_list.test_list_command_from_empty_folder.approved.txt │ ├── test_list.test_list_command_from_workspace_success.approved.txt │ ├── test_list.test_list_command_no_args.approved.txt │ ├── test_list.test_list_command_verbose_from_workspace_success.approved.txt │ └── test_list.test_run_command_from_workspace_success.approved.txt └── run │ ├── __init__.py │ ├── test_run.py │ ├── test_run.test_list_all_commands_in_workspace.approved.txt │ ├── test_run.test_run_command_from_standalone.approved.txt │ ├── test_run.test_run_command_from_standalone_execution_error.approved.txt │ ├── test_run.test_run_command_from_standalone_pass_env.approved.txt │ ├── test_run.test_run_command_from_standalone_resolution_error.approved.txt │ ├── test_run.test_run_command_from_standalone_with_extra_args.approved.txt │ ├── test_run.test_run_command_from_workspace_execution_error.approved.txt │ ├── test_run.test_run_command_from_workspace_filtered.approved.txt │ ├── test_run.test_run_command_from_workspace_filtered_no_project.approved.txt │ ├── test_run.test_run_command_from_workspace_resolution_error.approved.txt │ ├── test_run.test_run_command_from_workspace_sequential_success.approved.txt │ ├── test_run.test_run_command_from_workspace_success.approved.txt │ ├── test_run.test_run_command_from_workspace_with_extra_args.approved.txt │ ├── test_run.test_run_command_from_workspace_with_extra_args_and_project_filter.approved.txt │ └── test_run.test_run_command_help_works_without_path_resolution.approved.txt ├── tasks ├── TestAddAlias.test_wallet_add_account_successful.approved.txt ├── TestAddAlias.test_wallet_add_address_successful.approved.txt ├── TestAddAlias.test_wallet_add_alias_exists.approved.txt ├── TestAddAlias.test_wallet_add_alias_generic_error.approved.txt ├── TestAddAlias.test_wallet_add_alias_limit_error.approved.txt ├── TestAddAlias.test_wallet_add_alias_mnemonic_differs.approved.txt ├── TestAddAlias.test_wallet_add_invalid_address.approved.txt ├── TestGetAlias.test_wallet_get_alias_not_found.approved.txt ├── TestGetAlias.test_wallet_get_alias_successful.approved.txt ├── TestIpfsLogin.test_ipfs_login_exists.approved.txt ├── TestIpfsLogin.test_ipfs_login_successful.approved.txt ├── TestIpfsLogout.test_ipfs_logout.approved.txt ├── TestIpfsUpload.test_ipfs_upload_http_error.approved.txt ├── TestIpfsUpload.test_ipfs_upload_successful.approved.txt ├── TestListAliases.test_wallet_list_aliases_not_found.approved.txt ├── TestListAliases.test_wallet_list_aliases_successful.approved.txt ├── TestRemoveAlias.test_wallet_remove_alias_generic_error.approved.txt ├── TestRemoveAlias.test_wallet_remove_alias_not_found.approved.txt ├── TestRemoveAlias.test_wallet_remove_alias_successful.approved.txt ├── TestResetAliases.test_wallet_reset_aliases_generic_error.approved.txt ├── TestResetAliases.test_wallet_reset_aliases_not_found.approved.txt ├── TestResetAliases.test_wallet_reset_aliases_successful.approved.txt ├── __init__.py ├── conftest.py ├── test_analyze.py ├── test_analyze.test_analyze_abort_disclaimer.approved.txt ├── test_analyze.test_analyze_diff_flag.approved.txt ├── test_analyze.test_analyze_diff_flag_missing_old_report.approved.txt ├── test_analyze.test_analyze_error_in_tealer.approved.txt ├── test_analyze.test_analyze_error_no_pipx.approved.txt ├── test_analyze.test_analyze_multiple_files.approved.txt ├── test_analyze.test_analyze_multiple_files_recursive.approved.txt ├── test_analyze.test_analyze_single_file.approved.txt ├── test_analyze.test_analyze_skipping_tmpl_vars.approved.txt ├── test_analyze.test_exclude_vulnerabilities.approved.txt ├── test_asset.py ├── test_asset.test_opt_in_invalid_network.approved.txt ├── test_asset.test_opt_in_no_args.approved.txt ├── test_asset.test_opt_in_of_assets_from_account_alias_successful.approved.txt ├── test_asset.test_opt_in_to_assets_from_account_address_failed.approved.txt ├── test_asset.test_opt_in_to_assets_from_account_address_successful.approved.txt ├── test_asset.test_opt_out_assets_from_account_address_failed.approved.txt ├── test_asset.test_opt_out_invalid_network.approved.txt ├── test_asset.test_opt_out_no_args.approved.txt ├── test_asset.test_opt_out_of_all_assets_from_account_address_successful.approved.txt ├── test_asset.test_opt_out_of_assets_from_account_address_successful.approved.txt ├── test_asset.test_opt_out_of_assets_from_account_alias_successful.approved.txt ├── test_ipfs.py ├── test_mint.py ├── test_mint.test_mint_token_acfg_token_metadata_mismatch.approved.txt ├── test_mint.test_mint_token_generic_error.approved.txt ├── test_mint.test_mint_token_no_pinata_jwt_error.approved.txt ├── test_mint.test_mint_token_pinata_error.approved.txt ├── test_mint.test_mint_token_successful.address.False.localnet.approved.txt ├── test_mint.test_mint_token_successful.address.False.mainnet.approved.txt ├── test_mint.test_mint_token_successful.address.False.testnet.approved.txt ├── test_mint.test_mint_token_successful.alias.True.localnet.approved.txt ├── test_mint.test_mint_token_successful.alias.True.mainnet.approved.txt ├── test_mint.test_mint_token_successful.alias.True.testnet.approved.txt ├── test_mint.test_mint_token_successful_on_decimals.decimals_given_params.approved.txt ├── test_mint.test_mint_token_successful_on_decimals.no_decimals_given.approved.txt ├── test_nfd_lookup.py ├── test_nfd_lookup.test_nfd_lookup_by_address_success.approved.txt ├── test_nfd_lookup.test_nfd_lookup_by_domain_success.approved.txt ├── test_send_transaction.py ├── test_send_transaction.test_decoding_error.approved.txt ├── test_send_transaction.test_file_decoding_no_txn_error.approved.txt ├── test_send_transaction.test_mutually_exclusive_options.approved.txt ├── test_send_transaction.test_send_atomic_txn_group_successful.approved.txt ├── test_send_transaction.test_send_from_file_successful.approved.txt ├── test_send_transaction.test_send_from_piped_input_successful.approved.txt ├── test_send_transaction.test_send_from_transaction_successful.approved.txt ├── test_sign_transaction.py ├── test_sign_transaction.test_file_decoding_errors.approved.txt ├── test_sign_transaction.test_mutually_exclusive_options.approved.txt ├── test_sign_transaction.test_sign_atomic_txn_group_successful.approved.txt ├── test_sign_transaction.test_sign_from_stdin_with_address_successful.approved.txt ├── test_sign_transaction.test_sign_from_stdin_with_alias_successful.approved.txt ├── test_sign_transaction.test_sign_many_from_file_with_address_successful.approved.txt ├── test_sign_transaction.test_sign_many_from_file_with_alias_successful.approved.txt ├── test_sign_transaction.test_transaction_decoding_errors.approved.txt ├── test_transfer.py ├── test_transfer.test_transfer_algo_from_address_successful.approved.txt ├── test_transfer.test_transfer_algo_from_alias_successful.approved.txt ├── test_transfer.test_transfer_algo_successful.approved.txt ├── test_transfer.test_transfer_asset_from_address_successful.approved.txt ├── test_transfer.test_transfer_asset_from_address_to_alias_successful.approved.txt ├── test_transfer.test_transfer_asset_from_alias_successful.approved.txt ├── test_transfer.test_transfer_failed.approved.txt ├── test_transfer.test_transfer_invalid_receiver_account.approved.txt ├── test_transfer.test_transfer_invalid_sender_accoount.approved.txt ├── test_transfer.test_transfer_invalid_sender_account.approved.txt ├── test_transfer.test_transfer_no_amount.approved.txt ├── test_transfer.test_transfer_no_args.approved.txt ├── test_transfer.test_transfer_no_option.approved.txt ├── test_transfer.test_transfer_on_mainnet.approved.txt ├── test_transfer.test_transfer_on_testnet.approved.txt ├── test_vanity_address.py ├── test_vanity_address.test_vanity_address_invalid_input_on_alias.approved.txt ├── test_vanity_address.test_vanity_address_invalid_input_on_file.approved.txt ├── test_vanity_address.test_vanity_address_invalid_keyword.approved.txt ├── test_vanity_address.test_vanity_address_no_options.approved.txt └── test_wallet.py ├── test_root.py ├── test_root.test_help.approved.txt ├── utils ├── __init__.py ├── app_dir_mock.py ├── approvals.py ├── click_invoker.py ├── proc_mock.py └── which_mock.py └── version_check ├── __init__.py ├── test_version_check.py ├── test_version_check.test_version_check_disable_version_check.approved.txt ├── test_version_check.test_version_check_enable_version_check.approved.txt ├── test_version_check.test_version_check_queries_github_when_cache_out_of_date.approved.txt ├── test_version_check.test_version_check_queries_github_when_no_cache.approved.txt ├── test_version_check.test_version_check_respects_disable_config.approved.txt ├── test_version_check.test_version_check_respects_skip_option.approved.txt └── test_version_check.test_version_check_uses_cache.approved.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/build-binaries/linux/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/actions/build-binaries/linux/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-binaries/macos/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/actions/build-binaries/macos/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-binaries/windows/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/actions/build-binaries/windows/action.yaml -------------------------------------------------------------------------------- /.github/actions/install-apple-dev-id-cert/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/actions/install-apple-dev-id-cert/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-poetry/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/actions/setup-poetry/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/build-binaries.yaml -------------------------------------------------------------------------------- /.github/workflows/build-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/build-python.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/check-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/check-python.yaml -------------------------------------------------------------------------------- /.github/workflows/clear-caches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/clear-caches.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-release-packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.github/workflows/publish-release-packages.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/Run_AlgoKit_CLI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.idea/runConfigurations/Run_AlgoKit_CLI.xml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/README.md -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/debug.py -------------------------------------------------------------------------------- /docs/algokit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/algokit.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2022-11-14_sandbox-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2022-11-14_sandbox-approach.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2022-11-22_beaker-testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2022-11-22_beaker-testing-strategy.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2023-01-11_beaker_productionisation_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2023-01-11_beaker_productionisation_review.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2023-01-11_brew_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2023-01-11_brew_install.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2023-01-12_smart-contract-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2023-01-12_smart-contract-deployment.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2023-06-06_frontend-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2023-06-06_frontend-templates.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2023-07-19_advanced_generate_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2023-07-19_advanced_generate_command.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2024-01-13_native_binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2024-01-13_native_binaries.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2024-01-23_init-wizard-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2024-01-23_init-wizard-v2.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2024-01-31_binary_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2024-01-31_binary_distribution.md -------------------------------------------------------------------------------- /docs/architecture-decisions/2024-03-06_local_dev_ui_packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/2024-03-06_local_dev_ui_packaging.md -------------------------------------------------------------------------------- /docs/architecture-decisions/assets/2023-06-06_frontend-templates/modular_templates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/assets/2023-06-06_frontend-templates/modular_templates.jpg -------------------------------------------------------------------------------- /docs/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_1.jpg -------------------------------------------------------------------------------- /docs/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_2.jpg -------------------------------------------------------------------------------- /docs/architecture-decisions/assets/2024-01-13_native_binaries/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/assets/2024-01-13_native_binaries/image_1.png -------------------------------------------------------------------------------- /docs/architecture-decisions/assets/2024-01-13_native_binaries/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/assets/2024-01-13_native_binaries/image_2.png -------------------------------------------------------------------------------- /docs/architecture-decisions/lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/architecture-decisions/lifecycle.jpg -------------------------------------------------------------------------------- /docs/articles/output_stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/articles/output_stability.md -------------------------------------------------------------------------------- /docs/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/cli/index.md -------------------------------------------------------------------------------- /docs/features/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/compile.md -------------------------------------------------------------------------------- /docs/features/completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/completions.md -------------------------------------------------------------------------------- /docs/features/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/config.md -------------------------------------------------------------------------------- /docs/features/dispenser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/dispenser.md -------------------------------------------------------------------------------- /docs/features/doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/doctor.md -------------------------------------------------------------------------------- /docs/features/explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/explore.md -------------------------------------------------------------------------------- /docs/features/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/generate.md -------------------------------------------------------------------------------- /docs/features/goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/goal.md -------------------------------------------------------------------------------- /docs/features/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/init.md -------------------------------------------------------------------------------- /docs/features/localnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/localnet.md -------------------------------------------------------------------------------- /docs/features/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project.md -------------------------------------------------------------------------------- /docs/features/project/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project/bootstrap.md -------------------------------------------------------------------------------- /docs/features/project/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project/deploy.md -------------------------------------------------------------------------------- /docs/features/project/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project/link.md -------------------------------------------------------------------------------- /docs/features/project/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project/list.md -------------------------------------------------------------------------------- /docs/features/project/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/project/run.md -------------------------------------------------------------------------------- /docs/features/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks.md -------------------------------------------------------------------------------- /docs/features/tasks/analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/analyze.md -------------------------------------------------------------------------------- /docs/features/tasks/ipfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/ipfs.md -------------------------------------------------------------------------------- /docs/features/tasks/mint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/mint.md -------------------------------------------------------------------------------- /docs/features/tasks/nfd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/nfd.md -------------------------------------------------------------------------------- /docs/features/tasks/opt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/opt.md -------------------------------------------------------------------------------- /docs/features/tasks/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/send.md -------------------------------------------------------------------------------- /docs/features/tasks/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/sign.md -------------------------------------------------------------------------------- /docs/features/tasks/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/transfer.md -------------------------------------------------------------------------------- /docs/features/tasks/vanity_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/vanity_address.md -------------------------------------------------------------------------------- /docs/features/tasks/wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/features/tasks/wallet.md -------------------------------------------------------------------------------- /docs/imgs/algokit-intro-video-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/algokit-intro-video-thumbnail.jpg -------------------------------------------------------------------------------- /docs/imgs/algokit-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/algokit-map.png -------------------------------------------------------------------------------- /docs/imgs/algokitartifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/algokitartifacts.png -------------------------------------------------------------------------------- /docs/imgs/algokitcodetour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/algokitcodetour.png -------------------------------------------------------------------------------- /docs/imgs/algokitplayground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/algokitplayground.png -------------------------------------------------------------------------------- /docs/imgs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/banner.png -------------------------------------------------------------------------------- /docs/imgs/localnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/imgs/localnet.png -------------------------------------------------------------------------------- /docs/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/sphinx/conf.py -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/tutorials/algokit-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/tutorials/algokit-template.md -------------------------------------------------------------------------------- /docs/tutorials/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/tutorials/intro.md -------------------------------------------------------------------------------- /docs/tutorials/smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/docs/tutorials/smart-contracts.md -------------------------------------------------------------------------------- /entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/entitlements.xml -------------------------------------------------------------------------------- /misc/multiformats_config/multibase-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/misc/multiformats_config/multibase-table.json -------------------------------------------------------------------------------- /misc/multiformats_config/multicodec-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/misc/multiformats_config/multicodec-table.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/package_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/package_mac.sh -------------------------------------------------------------------------------- /scripts/package_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/package_windows.bat -------------------------------------------------------------------------------- /scripts/snap/create-snapcraft-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/snap/create-snapcraft-yaml.sh -------------------------------------------------------------------------------- /scripts/update-brew-cask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/update-brew-cask.sh -------------------------------------------------------------------------------- /scripts/winget/build-installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/build-installer.ps1 -------------------------------------------------------------------------------- /scripts/winget/installer/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/AppxManifest.xml -------------------------------------------------------------------------------- /scripts/winget/installer/assets/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/assets/Square150x150Logo.png -------------------------------------------------------------------------------- /scripts/winget/installer/assets/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/assets/Square44x44Logo.png -------------------------------------------------------------------------------- /scripts/winget/installer/assets/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/assets/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /scripts/winget/installer/assets/Square44x44Logo.targetsize-44_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/assets/Square44x44Logo.targetsize-44_altform-unplated.png -------------------------------------------------------------------------------- /scripts/winget/installer/assets/Square70x70Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/assets/Square70x70Logo.png -------------------------------------------------------------------------------- /scripts/winget/installer/priconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/installer/priconfig.xml -------------------------------------------------------------------------------- /scripts/winget/update-package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/scripts/winget/update-package.ps1 -------------------------------------------------------------------------------- /src/algokit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/__init__.py -------------------------------------------------------------------------------- /src/algokit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/__main__.py -------------------------------------------------------------------------------- /src/algokit/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/__init__.py -------------------------------------------------------------------------------- /src/algokit/cli/codespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/codespace.py -------------------------------------------------------------------------------- /src/algokit/cli/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/common/constants.py -------------------------------------------------------------------------------- /src/algokit/cli/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/common/utils.py -------------------------------------------------------------------------------- /src/algokit/cli/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/compile.py -------------------------------------------------------------------------------- /src/algokit/cli/compilers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/compilers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/compilers/python.py -------------------------------------------------------------------------------- /src/algokit/cli/compilers/typescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/compilers/typescript.py -------------------------------------------------------------------------------- /src/algokit/cli/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/completions.py -------------------------------------------------------------------------------- /src/algokit/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/config.py -------------------------------------------------------------------------------- /src/algokit/cli/dispenser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/dispenser.py -------------------------------------------------------------------------------- /src/algokit/cli/doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/doctor.py -------------------------------------------------------------------------------- /src/algokit/cli/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/explore.py -------------------------------------------------------------------------------- /src/algokit/cli/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/generate.py -------------------------------------------------------------------------------- /src/algokit/cli/goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/goal.py -------------------------------------------------------------------------------- /src/algokit/cli/init/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/init/__init__.py -------------------------------------------------------------------------------- /src/algokit/cli/init/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/init/command.py -------------------------------------------------------------------------------- /src/algokit/cli/init/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/init/example.py -------------------------------------------------------------------------------- /src/algokit/cli/init/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/init/helpers.py -------------------------------------------------------------------------------- /src/algokit/cli/localnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/localnet.py -------------------------------------------------------------------------------- /src/algokit/cli/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/__init__.py -------------------------------------------------------------------------------- /src/algokit/cli/project/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/bootstrap.py -------------------------------------------------------------------------------- /src/algokit/cli/project/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/deploy.py -------------------------------------------------------------------------------- /src/algokit/cli/project/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/link.py -------------------------------------------------------------------------------- /src/algokit/cli/project/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/list.py -------------------------------------------------------------------------------- /src/algokit/cli/project/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/project/run.py -------------------------------------------------------------------------------- /src/algokit/cli/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/task.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/tasks/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/analyze.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/assets.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/ipfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/ipfs.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/mint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/mint.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/nfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/nfd.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/send_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/send_transaction.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/sign_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/sign_transaction.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/transfer.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/utils.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/vanity_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/vanity_address.py -------------------------------------------------------------------------------- /src/algokit/cli/tasks/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tasks/wallet.py -------------------------------------------------------------------------------- /src/algokit/cli/tui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/tui/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/tui/init/example_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tui/init/example_selector.py -------------------------------------------------------------------------------- /src/algokit/cli/tui/init/screens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/cli/tui/init/screens/example_selector_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/cli/tui/init/screens/example_selector_screen.py -------------------------------------------------------------------------------- /src/algokit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/_vendor/auth0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/_vendor/auth0/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/_vendor/auth0/authentication/token_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/_vendor/auth0/authentication/token_verifier.py -------------------------------------------------------------------------------- /src/algokit/core/atomic_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/atomic_write.py -------------------------------------------------------------------------------- /src/algokit/core/codespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/codespace.py -------------------------------------------------------------------------------- /src/algokit/core/compilers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/compilers/python.py -------------------------------------------------------------------------------- /src/algokit/core/compilers/typescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/compilers/typescript.py -------------------------------------------------------------------------------- /src/algokit/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/conf.py -------------------------------------------------------------------------------- /src/algokit/core/config_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/config_commands/container_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/config_commands/container_engine.py -------------------------------------------------------------------------------- /src/algokit/core/config_commands/js_package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/config_commands/js_package_manager.py -------------------------------------------------------------------------------- /src/algokit/core/config_commands/py_package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/config_commands/py_package_manager.py -------------------------------------------------------------------------------- /src/algokit/core/config_commands/version_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/config_commands/version_prompt.py -------------------------------------------------------------------------------- /src/algokit/core/dispenser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/dispenser.py -------------------------------------------------------------------------------- /src/algokit/core/doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/doctor.py -------------------------------------------------------------------------------- /src/algokit/core/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/generate.py -------------------------------------------------------------------------------- /src/algokit/core/goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/goal.py -------------------------------------------------------------------------------- /src/algokit/core/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/init.py -------------------------------------------------------------------------------- /src/algokit/core/log_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/log_handlers.py -------------------------------------------------------------------------------- /src/algokit/core/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/proc.py -------------------------------------------------------------------------------- /src/algokit/core/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/project/__init__.py -------------------------------------------------------------------------------- /src/algokit/core/project/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/project/bootstrap.py -------------------------------------------------------------------------------- /src/algokit/core/project/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/project/deploy.py -------------------------------------------------------------------------------- /src/algokit/core/project/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/project/run.py -------------------------------------------------------------------------------- /src/algokit/core/questionary_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/questionary_extensions.py -------------------------------------------------------------------------------- /src/algokit/core/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/sandbox.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/tasks/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/analyze.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/ipfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/ipfs.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/mint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/core/tasks/mint/mint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/mint/mint.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/mint/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/mint/models.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/nfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/nfd.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/vanity_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/vanity_address.py -------------------------------------------------------------------------------- /src/algokit/core/tasks/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/tasks/wallet.py -------------------------------------------------------------------------------- /src/algokit/core/typed_client_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/typed_client_generation.py -------------------------------------------------------------------------------- /src/algokit/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/src/algokit/core/utils.py -------------------------------------------------------------------------------- /src/algokit/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit/resources/distribution-method: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/compile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compile/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/conftest.py -------------------------------------------------------------------------------- /tests/compile/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.py -------------------------------------------------------------------------------- /tests/compile/test_python.test_compile_py_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.test_compile_py_help.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_python.test_puyapy_is_installed_globally.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.test_puyapy_is_installed_globally.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_python.test_puyapy_is_installed_in_project.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.test_puyapy_is_installed_in_project.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_python.test_puyapy_is_not_installed_anywhere.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.test_puyapy_is_not_installed_anywhere.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_python.test_specificed_puyapy_version_is_not_installed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_python.test_specificed_puyapy_version_is_not_installed.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_typescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.py -------------------------------------------------------------------------------- /tests/compile/test_typescript.test_compile_py_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.test_compile_py_help.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_typescript.test_puyats_is_installed_globally.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.test_puyats_is_installed_globally.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_typescript.test_puyats_is_installed_in_project.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.test_puyats_is_installed_in_project.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_typescript.test_puyats_is_not_installed_anywhere.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.test_puyats_is_not_installed_anywhere.approved.txt -------------------------------------------------------------------------------- /tests/compile/test_typescript.test_specificed_puyats_version_is_not_installed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/compile/test_typescript.test_specificed_puyats_version_is_not_installed.approved.txt -------------------------------------------------------------------------------- /tests/completions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/completions/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.py -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_help.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_install_handles_config_outside_home.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_install_handles_config_outside_home.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_install_handles_no_profile.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_install_handles_no_profile.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_install_handles_unsupported_bash_gracefully.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_install_handles_unsupported_bash_gracefully.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_install_is_idempotent.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_install_is_idempotent.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_installs_correctly_with_detected_shell.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_installs_correctly_with_detected_shell.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_installs_correctly_with_specified_shell.zsh.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_installs_correctly_with_specified_shell.zsh.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_subcommands_help.install.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_subcommands_help.install.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_subcommands_help.uninstall.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_subcommands_help.uninstall.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_subcommands_with_unsupported_shell_fails_gracefully.install.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: pwsh is not a supported shell. 😢 2 | -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_subcommands_with_unsupported_shell_fails_gracefully.uninstall.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: pwsh is not a supported shell. 😢 2 | -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_uninstall_handles_no_profile.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_uninstall_handles_no_profile.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_uninstall_is_idempotent.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_uninstall_is_idempotent.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_uninstalls_correctly.bash.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_uninstalls_correctly.bash.approved.txt -------------------------------------------------------------------------------- /tests/completions/test_completions.test_completions_uninstalls_correctly.zsh.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/completions/test_completions.test_completions_uninstalls_correctly.zsh.approved.txt -------------------------------------------------------------------------------- /tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/test_package_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/config/test_package_managers.py -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_js_package_manager_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/config/test_package_managers.test_js_package_manager_help.approved.txt -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_js_package_manager_invalid_argument.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/config/test_package_managers.test_js_package_manager_invalid_argument.approved.txt -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_js_package_manager_set_npm.approved.txt: -------------------------------------------------------------------------------- 1 | JavaScript package manager set to `npm` 2 | -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_js_package_manager_set_pnpm.approved.txt: -------------------------------------------------------------------------------- 1 | JavaScript package manager set to `pnpm` 2 | -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_py_package_manager_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/config/test_package_managers.test_py_package_manager_help.approved.txt -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_py_package_manager_invalid_argument.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/config/test_package_managers.test_py_package_manager_invalid_argument.approved.txt -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_py_package_manager_set_poetry.approved.txt: -------------------------------------------------------------------------------- 1 | Python package manager set to `poetry` 2 | -------------------------------------------------------------------------------- /tests/config/test_package_managers.test_py_package_manager_set_uv.approved.txt: -------------------------------------------------------------------------------- 1 | Python package manager set to `uv` 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_address_invalid.approved.txt: -------------------------------------------------------------------------------- 1 | Error: `TZXGUW6DZ27OBB4QSGZKTYFEABCO3R7XWAXECEV73DTF3VOBNNJNAHZJJY` is an invalid account address 2 | -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_alias_invalid.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_alias_invalid.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_from_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_from_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_http_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_http_error.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_invalid_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_invalid_args.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_not_authenticated.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_not_authenticated.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_success.False.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_success.False.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_success.False.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_success.False.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_success.True.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_success.True.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestFundCommand.test_fund_command_success.True.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestFundCommand.test_fund_command_success.True.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_http_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_http_error.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_not_authenticated.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_not_authenticated.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_success.False.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_success.False.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_success.False.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_success.False.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_success.True.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_success.True.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLimitCommand.test_limit_command_success.True.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLimitCommand.test_limit_command_success.True.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_already_logged_in.approved.txt: -------------------------------------------------------------------------------- 1 | You are already logged in 2 | -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_cancelled_timeout.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_cancelled_timeout.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_expired_token_refresh.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_expired_token_refresh.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_expired_token_refresh.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_expired_token_refresh.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_success_ci.file.None.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_success_ci.file.None.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_success_ci.file.custom_file.txt.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_success_ci.file.custom_file.txt.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_success_ci.stdout.None.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_success_ci.stdout.None.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLoginCommand.test_login_command_success_user.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLoginCommand.test_login_command_success_user.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLogoutCommand.test_logout_command_already_logged_out.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: Already logged out 2 | -------------------------------------------------------------------------------- /tests/dispenser/TestLogoutCommand.test_logout_command_revoke_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLogoutCommand.test_logout_command_revoke_exception.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestLogoutCommand.test_logout_command_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestLogoutCommand.test_logout_command_success.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestRefundCommand.test_refund_command_http_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestRefundCommand.test_refund_command_http_error.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestRefundCommand.test_refund_command_invalid_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestRefundCommand.test_refund_command_invalid_args.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestRefundCommand.test_refund_command_not_authenticated.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestRefundCommand.test_refund_command_not_authenticated.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestRefundCommand.test_refund_command_success.False.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestRefundCommand.test_refund_command_success.False.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/TestRefundCommand.test_refund_command_success.True.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/TestRefundCommand.test_refund_command_success.True.approved.txt -------------------------------------------------------------------------------- /tests/dispenser/test_dispenser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/dispenser/test_dispenser.py -------------------------------------------------------------------------------- /tests/doctor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doctor/test_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.py -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[linux].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[macOS].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_bad_exit[windows].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_not_found[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_not_found[linux].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_not_found[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_not_found[macOS].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_all_commands_not_found[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_all_commands_not_found[windows].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_help.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_successful[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_successful[linux].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_successful[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_successful[macOS].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_successful[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_successful[windows].approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_copy.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_copy.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_docker_compose_version_gitpod.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_docker_compose_version_gitpod.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_docker_compose_version_unparseable.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_docker_compose_version_unparseable.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_docker_compose_version_warning.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_docker_compose_version_warning.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_weird_values_on_mac.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_weird_values_on_mac.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_doctor_with_weird_values_on_windows.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_doctor_with_weird_values_on_windows.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_new_algokit_version_available.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_new_algokit_version_available.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_npm_permission_denied.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_npm_permission_denied.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_unexpected_exception_locating_executable.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_unexpected_exception_locating_executable.approved.txt -------------------------------------------------------------------------------- /tests/doctor/test_doctor.test_unparseable_python_version.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/doctor/test_doctor.test_unparseable_python_version.approved.txt -------------------------------------------------------------------------------- /tests/explore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/explore/test_explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/explore/test_explore.py -------------------------------------------------------------------------------- /tests/explore/test_explore.test_explore.localnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/explore/test_explore.test_explore.localnet.approved.txt -------------------------------------------------------------------------------- /tests/explore/test_explore.test_explore.mainnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/explore/test_explore.test_explore.mainnet.approved.txt -------------------------------------------------------------------------------- /tests/explore/test_explore.test_explore.testnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/explore/test_explore.test_explore.testnet.approved.txt -------------------------------------------------------------------------------- /tests/generate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generate/app.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/app.arc32.json -------------------------------------------------------------------------------- /tests/generate/app.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/app.arc56.json -------------------------------------------------------------------------------- /tests/generate/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/application.json -------------------------------------------------------------------------------- /tests/generate/test_generate_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.py -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_no_app_spec_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_no_app_spec_found.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_output_path_is_dir.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_output_path_is_dir.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_python[-o client.py-client.py].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_python[-o client.py-client.py].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_python_arc32_filename.-o.client.py.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_python_arc32_filename.-o.client.py.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_python_arc56_filename.-o.client.py.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_python_arc56_filename.-o.client.py.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_client_recursive.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_client_recursive.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_help.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_generate_no_options.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_generate_no_options.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_npx_failed[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_npx_failed[linux].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_npx_failed[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_npx_failed[macOS].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_npx_failed[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_npx_failed[windows].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_npx_missing.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_npx_missing.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_pipx_missing.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_pipx_missing.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_python_generator_is_installed_globally.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_python_generator_is_installed_globally.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_python_generator_is_installed_in_project.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_python_generator_is_installed_in_project.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_python_generator_version_is_not_installed_anywhere.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_python_generator_version_is_not_installed_anywhere.approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[linux].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[macOS].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_globally[windows].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[linux].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[macOS].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_client.test_typescript_generator_is_installed_in_project[windows].approved.txt -------------------------------------------------------------------------------- /tests/generate/test_generate_custom_generate_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/generate/test_generate_custom_generate_commands.py -------------------------------------------------------------------------------- /tests/goal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/goal/test_goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.py -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_complex_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_complex_args.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_compose_outdated.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_compose_outdated.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_console.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_console.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_console_algod_not_created.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_console_algod_not_created.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_console_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_console_failed.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_help.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_no_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_no_args.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_on_named_localnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_on_named_localnet.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_with_input_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_with_input_file.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_with_input_output_files.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_with_input_output_files.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_with_input_output_files_with_dot_convention_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_with_input_output_files_with_dot_convention_name.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_with_multiple_input_output_files.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_with_multiple_input_output_files.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_with_output_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_with_output_file.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_simple_args_without_file_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_simple_args_without_file_error.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_start_without_docker.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_start_without_docker.approved.txt -------------------------------------------------------------------------------- /tests/goal/test_goal.test_goal_start_without_docker_engine_running.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/goal/test_goal.test_goal_start_without_docker_engine_running.approved.txt -------------------------------------------------------------------------------- /tests/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/init/copier-helloworld.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/copier-helloworld.bundle -------------------------------------------------------------------------------- /tests/init/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/init/example/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/example/test_example.py -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/example/test_example.test_example_command_help.approved.txt -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_list_option.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/example/test_example.test_example_command_list_option.approved.txt -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_tui_select_nothing.approved.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_tui_select_valid.approved.txt: -------------------------------------------------------------------------------- 1 | Created example python-smart-contract 2 | -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_tui_select_valid_but_source_missing.approved.txt: -------------------------------------------------------------------------------- 1 | Example python-smart-contract not found 2 | -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_with_invalid_id.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/example/test_example.test_example_command_with_invalid_id.approved.txt -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_with_valid_id.approved.txt: -------------------------------------------------------------------------------- 1 | Created example react-vite 2 | -------------------------------------------------------------------------------- /tests/init/example/test_example.test_example_command_with_valid_id_source_not_exist.approved.txt: -------------------------------------------------------------------------------- 1 | Example react-vite not found 2 | -------------------------------------------------------------------------------- /tests/init/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.py -------------------------------------------------------------------------------- /tests/init/test_init.test_init_ask_about_git.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_ask_about_git.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_blessed_template_url_get_community_warning.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_blessed_template_url_get_community_warning.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_bootstrap_no.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_bootstrap_no.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_bootstrap_yes.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_bootstrap_yes.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_do_not_use_existing_folder.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_do_not_use_existing_folder.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_existing_filename_same_as_folder_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_existing_filename_same_as_folder_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_help.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_input_template_url.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_input_template_url.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_invalid_template_url.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_invalid_template_url.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_minimal_interaction_required_no_git_no_network_no_bootstrap.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_minimal_interaction_required_no_git_no_network_no_bootstrap.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_minimal_interaction_required_yes_git_no_network.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_minimal_interaction_required_yes_git_no_network.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_missing_git.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_missing_git.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_community_template.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_community_template.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_interaction_required_defaults_no_git_no_network.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_interaction_required_defaults_no_git_no_network.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_interaction_required_no_git_no_network.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_interaction_required_no_git_no_network.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_no_ide.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_no_ide.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_vscode.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_vscode.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_vscode_and_readme.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_no_interaction_required_no_git_no_network_with_vscode_and_readme.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_project_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_project_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_project_name_not_empty.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_project_name_not_empty.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_project_name_reenter_folder_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_project_name_reenter_folder_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_template_selection.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_template_selection.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_template_url_and_template_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_template_url_and_template_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_template_with_python_task_fails_on_missing_python.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_template_with_python_task_fails_on_missing_python.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_template_with_python_task_works.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_template_with_python_task_works.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_use_existing_folder.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_use_existing_folder.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_with_any_template_url_get_community_warning.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_with_any_template_url_get_community_warning.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_with_any_template_url_get_community_warning_with_unsafe_tag.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_with_any_template_url_get_community_warning_with_unsafe_tag.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_with_custom_env.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_with_custom_env.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_with_official_template_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_with_official_template_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_with_official_template_name_and_hash.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_with_official_template_name_and_hash.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_append_to_vscode_workspace.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_wizard_v2_append_to_vscode_workspace.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_flow.Custom Template.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_wizard_v2_flow.Custom Template.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_flow.DApp Frontend.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_wizard_v2_flow.DApp Frontend.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_flow.Full Stack.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_wizard_v2_flow.Full Stack.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_flow.Smart Contract.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_init_wizard_v2_flow.Smart Contract.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_github_folder_no_workspace.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/init/test_init.test_init_wizard_v2_github_folder_with_workspace.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/init/test_init.test_invalid_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init.test_invalid_name.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init_with_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init_with_bootstrap.py -------------------------------------------------------------------------------- /tests/init/test_init_with_bootstrap.test_init_bootstrap_broken_poetry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init_with_bootstrap.test_init_bootstrap_broken_poetry.approved.txt -------------------------------------------------------------------------------- /tests/init/test_init_with_bootstrap.test_init_bootstrap_version_fail.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/init/test_init_with_bootstrap.test_init_bootstrap_version_fail.approved.txt -------------------------------------------------------------------------------- /tests/localnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/localnet/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/conftest.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet.test_localnet_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet.test_localnet_help.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_codespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_codespace.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_codespace.test_install_gh_not_installed_failed_install.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_codespace.test_install_gh_not_installed_failed_install.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_codespace.test_install_gh_unix.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_codespace.test_install_gh_unix.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_codespace.test_install_gh_windows.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_codespace.test_install_gh_windows.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_codespace.test_invalid_scope_auth.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_codespace.test_invalid_scope_auth.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_console.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_console.test_goal_console.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_console.test_goal_console.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.test_localnet_reset_with_named_sandbox_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.test_localnet_reset_with_named_sandbox_config.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.test_localnet_reset_without_docker.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.test_localnet_reset_without_docker.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.test_localnet_reset_without_docker_compose.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.test_localnet_reset_without_docker_compose.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.test_localnet_reset_without_docker_engine_running.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.test_localnet_reset_without_docker_engine_running.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_reset.test_localnet_reset_without_existing_sandbox.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_reset.test_localnet_reset_without_existing_sandbox.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_img_check_cmd_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_img_check_cmd_error.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_failure.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_health_bad_status.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_health_bad_status.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_health_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_health_failure.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_out_date.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_out_date.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_out_of_date_definition.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_out_of_date_definition.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_up_to_date_definition.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_up_to_date_definition.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_custom_config_dir.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_custom_config_dir.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_gitpod_docker_compose_version.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_gitpod_docker_compose_version.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_name.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_no_dev_mode.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_no_dev_mode.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_old_docker_compose_version.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_old_docker_compose_version.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_with_unparseable_docker_compose_version.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_with_unparseable_docker_compose_version.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_without_docker.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_without_docker.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_without_docker_compose.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_without_docker_compose.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_start.test_localnet_start_without_docker_engine_running.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_start.test_localnet_start_without_docker_engine_running.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_docker_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_docker_error.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_failure.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_http_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_http_error.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_missing_service.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_missing_service.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_no_existing_definition.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_no_existing_definition.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_service_not_started.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_service_not_started.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_successful.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_unexpected_port.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_unexpected_port.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_without_docker.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_without_docker.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_without_docker_compose.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_without_docker_compose.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_status.test_localnet_status_without_docker_engine_running.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_status.test_localnet_status_without_docker_engine_running.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.py -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_failure.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_no_existing_definition.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_no_existing_definition.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_with_name.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_with_name.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_without_docker.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_without_docker.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_without_docker_compose.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_without_docker_compose.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_localnet_stop.test_localnet_stop_without_docker_engine_running.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_localnet_stop.test_localnet_stop_without_docker_engine_running.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.py -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.test_algod_network_template_json.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.test_algod_network_template_json.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.test_get_conduit_yaml.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.test_get_conduit_yaml.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.test_get_config_json.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.test_get_config_json.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.test_get_docker_compose_yml.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.test_get_docker_compose_yml.approved.txt -------------------------------------------------------------------------------- /tests/localnet/test_sandbox.test_proxy_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/localnet/test_sandbox.test_proxy_config.approved.txt -------------------------------------------------------------------------------- /tests/portability/test_pyinstaller_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/portability/test_pyinstaller_binary.py -------------------------------------------------------------------------------- /tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap.test_bootstrap_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap.test_bootstrap_help.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_algokit_min_version.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_algokit_min_version.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_algokit_min_version_ignore_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_algokit_min_version_ignore_error.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_empty.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_empty.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_env.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_env.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_npm[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_poetry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_poetry.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_poetry_via_pyproject.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_poetry_via_pyproject.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_filter.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_filter.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_filter_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_filter_not_found.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_name_filter.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_name_filter.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_name_filter_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_name_filter_not_found.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_type_filter.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_type_filter.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_type_filter_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_projects_type_filter_not_found.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_skip_dirs.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_skip_dirs.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_sub_dir.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_all.test_bootstrap_all_sub_dir.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_exists.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_exists.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_missing_template_exists.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_missing_template_exists.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_with_values.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_dotenv_with_values.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_multiple_templates.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_multiple_templates.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_no_files.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_env_no_files.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_env_dotenv_exists.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.localnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.localnet.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.template.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_env.test_bootstrap_network_prefixed_envs..env.template.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_ci_mode_with_lock_file[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_happy_path[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_npm[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_npm.test_bootstrap_npm_without_package_file[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_package_manager_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_package_manager_selection.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_package_manager_selection.test_interactive_prompt_fallback_with_preference_saving.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_package_manager_selection.test_project_override_takes_precedence_over_user_preference.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_package_manager_selection.test_smart_defaults_when_no_user_preference.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_ci_mode_without_lock_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_ci_mode_without_lock_file.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[linux].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[linux].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[macOS].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[macOS].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[windows].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_happy_path[windows].approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_without_package_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_pnpm.test_bootstrap_pnpm_without_package_file.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_poetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_poetry.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_poetry.test_bootstrap_poetry_with_poetry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_poetry.test_bootstrap_poetry_with_poetry.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_poetry.test_bootstrap_poetry_without_poetry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_poetry.test_bootstrap_poetry_without_poetry.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_translation.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_uv.py -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_happy_path.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_happy_path.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_poetry_project_migration_declined.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_poetry_project_migration_declined.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_user_declines_install.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_bootstrap_uv.test_bootstrap_uv_user_declines_install.approved.txt -------------------------------------------------------------------------------- /tests/project/bootstrap/test_precedence_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/bootstrap/test_precedence_hierarchy.py -------------------------------------------------------------------------------- /tests/project/deploy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.py -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_config_empty_array.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_config_empty_array.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_config_invalid_syntax.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_config_invalid_syntax.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_config_name_no_base.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_config_name_no_base.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_config_name_overrides.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_config_name_overrides.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_deploy_only_base_deploy_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_deploy_only_base_deploy_config.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_env_and_name_correct_set.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_env_and_name_correct_set.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_algokit_env_name_missing.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_algokit_env_name_missing.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_ci_flag_interactivity_mode_via_cli.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_ci_flag_interactivity_mode_via_cli.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_ci_flag_interactivity_mode_via_env.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_ci_flag_interactivity_mode_via_env.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_bad_exit_code.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_bad_exit_code.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_invocation_and_command_splitting.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_invocation_and_command_splitting.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_not_executable.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_not_executable.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_not_found_and_no_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_not_found_and_no_config.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_splitting_from_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_splitting_from_config.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_command_without_splitting_from_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_command_without_splitting_from_config.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_custom_project_dir.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_custom_project_dir.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_dispenser_alias.deployer.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_dispenser_alias.deployer.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_dispenser_alias.dispenser.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_dispenser_alias.dispenser.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_shutil_command_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_shutil_command_not_found.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_windows_command_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_windows_command_not_found.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_with_extra_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_with_extra_args.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_deploy_with_extra_args_and_custom_command.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_deploy_with_extra_args_and_custom_command.approved.txt -------------------------------------------------------------------------------- /tests/project/deploy/test_deploy.test_secrets_prompting_via_stdin.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/deploy/test_deploy.test_secrets_prompting_via_stdin.approved.txt -------------------------------------------------------------------------------- /tests/project/link/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/application.json -------------------------------------------------------------------------------- /tests/project/link/test_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.py -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_all_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_link_command_all_success.approved.txt -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_by_name_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_link_command_by_name_success.approved.txt -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_empty_folder.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: No .algokit.toml config found. Skipping... 2 | -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_multiple_names_no_specs_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_link_command_multiple_names_no_specs_success.approved.txt -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_multiple_names_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_link_command_multiple_names_success.approved.txt -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_command_name_not_found.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: No contract_project_13 found. Skipping... 2 | -------------------------------------------------------------------------------- /tests/project/link/test_link.test_link_runtime_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_link_runtime_error.approved.txt -------------------------------------------------------------------------------- /tests/project/link/test_link.test_list_command_from_workspace_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/link/test_link.test_list_command_from_workspace_success.approved.txt -------------------------------------------------------------------------------- /tests/project/list/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.py -------------------------------------------------------------------------------- /tests/project/list/test_list.test_list_command_from_empty_folder.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.test_list_command_from_empty_folder.approved.txt -------------------------------------------------------------------------------- /tests/project/list/test_list.test_list_command_from_workspace_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.test_list_command_from_workspace_success.approved.txt -------------------------------------------------------------------------------- /tests/project/list/test_list.test_list_command_no_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.test_list_command_no_args.approved.txt -------------------------------------------------------------------------------- /tests/project/list/test_list.test_list_command_verbose_from_workspace_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.test_list_command_verbose_from_workspace_success.approved.txt -------------------------------------------------------------------------------- /tests/project/list/test_list.test_run_command_from_workspace_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/list/test_list.test_run_command_from_workspace_success.approved.txt -------------------------------------------------------------------------------- /tests/project/run/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/run/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.py -------------------------------------------------------------------------------- /tests/project/run/test_run.test_list_all_commands_in_workspace.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_list_all_commands_in_workspace.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_standalone.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_standalone.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_standalone_execution_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_standalone_execution_error.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_standalone_pass_env.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_standalone_pass_env.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_standalone_resolution_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_standalone_resolution_error.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_standalone_with_extra_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_standalone_with_extra_args.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_execution_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_execution_error.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_filtered.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_filtered.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_filtered_no_project.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_filtered_no_project.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_resolution_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_resolution_error.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_sequential_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_sequential_success.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_success.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_with_extra_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_with_extra_args.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_from_workspace_with_extra_args_and_project_filter.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_from_workspace_with_extra_args_and_project_filter.approved.txt -------------------------------------------------------------------------------- /tests/project/run/test_run.test_run_command_help_works_without_path_resolution.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/project/run/test_run.test_run_command_help_works_without_path_resolution.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_account_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_account_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_alias_exists.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_alias_exists.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_alias_generic_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_alias_generic_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_alias_limit_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_alias_limit_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_alias_mnemonic_differs.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_alias_mnemonic_differs.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestAddAlias.test_wallet_add_invalid_address.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestAddAlias.test_wallet_add_invalid_address.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestGetAlias.test_wallet_get_alias_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestGetAlias.test_wallet_get_alias_not_found.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestGetAlias.test_wallet_get_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestGetAlias.test_wallet_get_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestIpfsLogin.test_ipfs_login_exists.approved.txt: -------------------------------------------------------------------------------- 1 | WARNING: You are already logged in! 2 | -------------------------------------------------------------------------------- /tests/tasks/TestIpfsLogin.test_ipfs_login_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestIpfsLogin.test_ipfs_login_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestIpfsLogout.test_ipfs_logout.approved.txt: -------------------------------------------------------------------------------- 1 | Logout successful 2 | -------------------------------------------------------------------------------- /tests/tasks/TestIpfsUpload.test_ipfs_upload_http_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestIpfsUpload.test_ipfs_upload_http_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestIpfsUpload.test_ipfs_upload_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestIpfsUpload.test_ipfs_upload_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestListAliases.test_wallet_list_aliases_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestListAliases.test_wallet_list_aliases_not_found.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestListAliases.test_wallet_list_aliases_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestListAliases.test_wallet_list_aliases_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestRemoveAlias.test_wallet_remove_alias_generic_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestRemoveAlias.test_wallet_remove_alias_generic_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestRemoveAlias.test_wallet_remove_alias_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestRemoveAlias.test_wallet_remove_alias_not_found.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestRemoveAlias.test_wallet_remove_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestRemoveAlias.test_wallet_remove_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestResetAliases.test_wallet_reset_aliases_generic_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestResetAliases.test_wallet_reset_aliases_generic_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestResetAliases.test_wallet_reset_aliases_not_found.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestResetAliases.test_wallet_reset_aliases_not_found.approved.txt -------------------------------------------------------------------------------- /tests/tasks/TestResetAliases.test_wallet_reset_aliases_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/TestResetAliases.test_wallet_reset_aliases_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tasks/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/conftest.py -------------------------------------------------------------------------------- /tests/tasks/test_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.py -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_abort_disclaimer.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_abort_disclaimer.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_diff_flag.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_diff_flag.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_diff_flag_missing_old_report.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_diff_flag_missing_old_report.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_error_in_tealer.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_error_in_tealer.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_error_no_pipx.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_error_no_pipx.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_multiple_files.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_multiple_files.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_multiple_files_recursive.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_multiple_files_recursive.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_single_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_single_file.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_analyze_skipping_tmpl_vars.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_analyze_skipping_tmpl_vars.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_analyze.test_exclude_vulnerabilities.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_analyze.test_exclude_vulnerabilities.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.py -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_in_invalid_network.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_in_invalid_network.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_in_no_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_in_no_args.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_in_of_assets_from_account_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_in_of_assets_from_account_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_in_to_assets_from_account_address_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_in_to_assets_from_account_address_failed.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_in_to_assets_from_account_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_in_to_assets_from_account_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_assets_from_account_address_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_assets_from_account_address_failed.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_invalid_network.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_invalid_network.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_no_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_no_args.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_of_all_assets_from_account_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_of_all_assets_from_account_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_of_assets_from_account_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_of_assets_from_account_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_asset.test_opt_out_of_assets_from_account_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_asset.test_opt_out_of_assets_from_account_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_ipfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_ipfs.py -------------------------------------------------------------------------------- /tests/tasks/test_mint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.py -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_acfg_token_metadata_mismatch.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_acfg_token_metadata_mismatch.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_generic_error.approved.txt: -------------------------------------------------------------------------------- 1 | Enter the mnemonic phrase (25 words separated by whitespace): 2 | -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_no_pinata_jwt_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_no_pinata_jwt_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_pinata_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_pinata_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.address.False.localnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.address.False.localnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.address.False.mainnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.address.False.mainnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.address.False.testnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.address.False.testnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.alias.True.localnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.alias.True.localnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.alias.True.mainnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.alias.True.mainnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful.alias.True.testnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful.alias.True.testnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful_on_decimals.decimals_given_params.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful_on_decimals.decimals_given_params.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_mint.test_mint_token_successful_on_decimals.no_decimals_given.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_mint.test_mint_token_successful_on_decimals.no_decimals_given.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_nfd_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_nfd_lookup.py -------------------------------------------------------------------------------- /tests/tasks/test_nfd_lookup.test_nfd_lookup_by_address_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_nfd_lookup.test_nfd_lookup_by_address_success.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_nfd_lookup.test_nfd_lookup_by_domain_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_nfd_lookup.test_nfd_lookup_by_domain_success.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.py -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_decoding_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.test_decoding_error.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_file_decoding_no_txn_error.approved.txt: -------------------------------------------------------------------------------- 1 | Error: No valid transactions found! 2 | -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_mutually_exclusive_options.approved.txt: -------------------------------------------------------------------------------- 1 | Error: Illegal usage: 'file' is mutually exclusive with transaction. 2 | -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_send_atomic_txn_group_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.test_send_atomic_txn_group_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_send_from_file_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.test_send_from_file_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_send_from_piped_input_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.test_send_from_piped_input_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_send_transaction.test_send_from_transaction_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_send_transaction.test_send_from_transaction_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.py -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_file_decoding_errors.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_file_decoding_errors.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_mutually_exclusive_options.approved.txt: -------------------------------------------------------------------------------- 1 | Error: Illegal usage: 'file' is mutually exclusive with transaction. 2 | -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_sign_atomic_txn_group_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_sign_atomic_txn_group_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_sign_from_stdin_with_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_sign_from_stdin_with_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_sign_from_stdin_with_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_sign_from_stdin_with_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_sign_many_from_file_with_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_sign_many_from_file_with_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_sign_many_from_file_with_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_sign_many_from_file_with_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_sign_transaction.test_transaction_decoding_errors.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_sign_transaction.test_transaction_decoding_errors.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.py -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_algo_from_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_algo_from_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_algo_from_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_algo_from_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_algo_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_algo_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_asset_from_address_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_asset_from_address_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_asset_from_address_to_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_asset_from_address_to_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_asset_from_alias_successful.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_asset_from_alias_successful.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_failed.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_invalid_receiver_account.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_invalid_receiver_account.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_invalid_sender_accoount.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_invalid_sender_account.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_invalid_sender_account.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_no_amount.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_no_amount.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_no_args.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_no_args.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_no_option.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_on_mainnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_on_mainnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_transfer.test_transfer_on_testnet.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_transfer.test_transfer_on_testnet.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_vanity_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_vanity_address.py -------------------------------------------------------------------------------- /tests/tasks/test_vanity_address.test_vanity_address_invalid_input_on_alias.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_vanity_address.test_vanity_address_invalid_input_on_alias.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_vanity_address.test_vanity_address_invalid_input_on_file.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_vanity_address.test_vanity_address_invalid_input_on_file.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_vanity_address.test_vanity_address_invalid_keyword.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_vanity_address.test_vanity_address_invalid_keyword.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_vanity_address.test_vanity_address_no_options.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_vanity_address.test_vanity_address_no_options.approved.txt -------------------------------------------------------------------------------- /tests/tasks/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/tasks/test_wallet.py -------------------------------------------------------------------------------- /tests/test_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/test_root.py -------------------------------------------------------------------------------- /tests/test_root.test_help.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/test_root.test_help.approved.txt -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/app_dir_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/utils/app_dir_mock.py -------------------------------------------------------------------------------- /tests/utils/approvals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/utils/approvals.py -------------------------------------------------------------------------------- /tests/utils/click_invoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/utils/click_invoker.py -------------------------------------------------------------------------------- /tests/utils/proc_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/utils/proc_mock.py -------------------------------------------------------------------------------- /tests/utils/which_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/utils/which_mock.py -------------------------------------------------------------------------------- /tests/version_check/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/version_check/test_version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/version_check/test_version_check.py -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_disable_version_check.approved.txt: -------------------------------------------------------------------------------- 1 | 🚫 Will stop checking for new versions 2 | -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_enable_version_check.approved.txt: -------------------------------------------------------------------------------- 1 | 📡 Resuming check for new versions 2 | -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_queries_github_when_no_cache.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/version_check/test_version_check.test_version_check_queries_github_when_no_cache.approved.txt -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_respects_disable_config.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/version_check/test_version_check.test_version_check_respects_disable_config.approved.txt -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_respects_skip_option.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/version_check/test_version_check.test_version_check_respects_skip_option.approved.txt -------------------------------------------------------------------------------- /tests/version_check/test_version_check.test_version_check_uses_cache.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-cli/HEAD/tests/version_check/test_version_check.test_version_check_uses_cache.approved.txt --------------------------------------------------------------------------------