├── .coveragerc ├── .flake8 ├── .gitattributes ├── .gitignore ├── .hound.yml ├── .pre-commit-config.yaml ├── .tkdeploy ├── LICENSE ├── README.md ├── SECURITY.md ├── _core_upgrader.py ├── azure-pipelines.yml ├── codecov.yml ├── developer ├── README.md ├── bake_config.py ├── build_plugin.py ├── populate_bundle_cache.py ├── requirements.txt ├── shotgun_api_update.sh ├── sso_saml2_update.sh ├── upgrade_pyyaml.py └── utils │ ├── __init__.py │ ├── authentication.py │ ├── caching.py │ └── option_parser.py ├── docs ├── authentication.rst ├── core.rst ├── descriptor.rst ├── environment_variables.rst ├── examples │ └── bootstrap_hook.py ├── index.rst ├── initializing.rst ├── overview.rst ├── platform.rst ├── resources │ ├── descriptor │ │ └── config_folder_token.png │ ├── initializing │ │ ├── bootstrap.png │ │ ├── bundle_cache_in_config.png │ │ ├── bundle_custom_entity.png │ │ ├── create_uploaded_config_field.png │ │ ├── dev_sandbox.png │ │ ├── distributed_config.png │ │ ├── engine_files.png │ │ ├── launch.png │ │ ├── launch2.png │ │ ├── manual_install.png │ │ ├── pipeline_config.png │ │ ├── plugin_ids.png │ │ ├── project_site_git.png │ │ ├── shared_config.png │ │ ├── tk_project.png │ │ └── zip_config.png │ ├── overview │ │ └── overview.png │ └── source_files │ │ ├── descriptor.graffle │ │ ├── initializing.graffle │ │ └── overview.graffle └── utils.rst ├── hooks ├── before_register_publish.py ├── bundle_init.py ├── cache_location.py ├── context_additional_entities.py ├── context_change.py ├── default_storage_root.py ├── engine_init.py ├── ensure_folder_exists.py ├── example_template_hook.py ├── get_current_login.py ├── log_metrics.py ├── pick_environment.py ├── pipeline_configuration_init.py ├── process_folder_creation.py ├── process_folder_name.py ├── resolve_publish.py └── tank_init.py ├── info.yml ├── python ├── sgtk │ └── __init__.py ├── tank │ ├── __init__.py │ ├── api.py │ ├── authentication │ │ ├── __init__.py │ │ ├── app_session_launcher.py │ │ ├── console_authentication.py │ │ ├── constants.py │ │ ├── core_defaults_manager.py │ │ ├── defaults_manager.py │ │ ├── errors.py │ │ ├── interactive_authentication.py │ │ ├── invoker.py │ │ ├── login_dialog.py │ │ ├── resources │ │ │ ├── backup_codes_light_bg.png │ │ │ ├── down-arrow.png │ │ │ ├── google_authenticator.png │ │ │ ├── login.graffle │ │ │ ├── login_dialog.ui │ │ │ ├── resources.qrc │ │ │ └── shotgun_logo_light_medium.png │ │ ├── session_cache.py │ │ ├── shotgun_authenticator.py │ │ ├── shotgun_wrapper.py │ │ ├── site_info.py │ │ ├── sso_saml2 │ │ │ ├── __init__.py │ │ │ ├── commit_id │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── authentication_session_data.py │ │ │ │ ├── errors.py │ │ │ │ ├── sso_saml2_core.py │ │ │ │ ├── username_password_dialog.py │ │ │ │ └── utils.py │ │ │ ├── sso_saml2.py │ │ │ ├── sso_saml2_rv.py │ │ │ ├── sso_saml2_toolkit.py │ │ │ └── utils.py │ │ ├── ui │ │ │ ├── __init__.py │ │ │ ├── aspect_preserving_label.py │ │ │ ├── completion_filter_proxy.py │ │ │ ├── login_dialog.py │ │ │ ├── qt_abstraction.py │ │ │ ├── recent_box.py │ │ │ └── resources_rc.py │ │ ├── ui_authentication.py │ │ ├── user.py │ │ ├── user_impl.py │ │ ├── utils.py │ │ └── web_login_support.py │ ├── bootstrap │ │ ├── __init__.py │ │ ├── async_bootstrap.py │ │ ├── baked_configuration.py │ │ ├── bundle_downloader.py │ │ ├── cached_configuration.py │ │ ├── configuration.py │ │ ├── configuration_writer.py │ │ ├── constants.py │ │ ├── errors.py │ │ ├── hooks │ │ │ └── bootstrap.py │ │ ├── import_handler.py │ │ ├── installed_configuration.py │ │ ├── manager.py │ │ └── resolver.py │ ├── commands │ │ ├── __init__.py │ │ ├── action_base.py │ │ ├── app_info.py │ │ ├── cache_apps.py │ │ ├── cache_yaml.py │ │ ├── clone_configuration.py │ │ ├── console_utils.py │ │ ├── constants.py │ │ ├── copy_apps.py │ │ ├── core_localize.py │ │ ├── core_upgrade.py │ │ ├── desktop_migration.py │ │ ├── dump_config.py │ │ ├── folders.py │ │ ├── get_entity_commands.py │ │ ├── install.py │ │ ├── interaction.py │ │ ├── misc.py │ │ ├── move_pc.py │ │ ├── path_cache.py │ │ ├── pc_overview.py │ │ ├── push_pc.py │ │ ├── setup_project.py │ │ ├── setup_project_core.py │ │ ├── setup_project_params.py │ │ ├── setup_project_wizard.py │ │ ├── switch.py │ │ ├── tank_command.py │ │ ├── unregister_folders.py │ │ ├── update.py │ │ ├── util.py │ │ └── validate_config.py │ ├── constants.py │ ├── context.py │ ├── deploy │ │ ├── README.md │ │ ├── __init__.py │ │ ├── descriptor.py │ │ ├── dev_descriptor.py │ │ └── util.py │ ├── descriptor │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── descriptor.py │ │ ├── descriptor_bundle.py │ │ ├── descriptor_cached_config.py │ │ ├── descriptor_config.py │ │ ├── descriptor_core.py │ │ ├── descriptor_installed_config.py │ │ ├── errors.py │ │ ├── io_descriptor │ │ │ ├── __init__.py │ │ │ ├── appstore.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── downloadable.py │ │ │ ├── factory.py │ │ │ ├── git.py │ │ │ ├── git_branch.py │ │ │ ├── git_tag.py │ │ │ ├── github_release.py │ │ │ ├── manual.py │ │ │ ├── path.py │ │ │ └── shotgun_entity.py │ │ └── resources │ │ │ ├── default_bundle_256px.png │ │ │ └── resources.graffle │ ├── errors.py │ ├── folder │ │ ├── __init__.py │ │ ├── configuration.py │ │ ├── constants.py │ │ ├── folder_io.py │ │ ├── folder_types │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── entity.py │ │ │ ├── errors.py │ │ │ ├── expression_tokens.py │ │ │ ├── listfield.py │ │ │ ├── project.py │ │ │ ├── static.py │ │ │ ├── step.py │ │ │ ├── task.py │ │ │ ├── user.py │ │ │ └── util.py │ │ └── operations.py │ ├── hook.py │ ├── log.py │ ├── path_cache.py │ ├── pipelineconfig.py │ ├── pipelineconfig_factory.py │ ├── pipelineconfig_utils.py │ ├── platform │ │ ├── __init__.py │ │ ├── application.py │ │ ├── bundle.py │ │ ├── constants.py │ │ ├── engine.py │ │ ├── engine_logging.py │ │ ├── environment.py │ │ ├── environment_includes.py │ │ ├── errors.py │ │ ├── events │ │ │ ├── __init__.py │ │ │ ├── event_engine.py │ │ │ ├── event_file_close.py │ │ │ └── event_file_open.py │ │ ├── framework.py │ │ ├── import_stack.py │ │ ├── qt │ │ │ ├── __init__.py │ │ │ ├── arrow.png │ │ │ ├── arrow_flipped.png │ │ │ ├── arrow_flipped_hover.png │ │ │ ├── arrow_flipped_pressed.png │ │ │ ├── arrow_hover.png │ │ │ ├── arrow_pressed.png │ │ │ ├── book_256.png │ │ │ ├── busy_dialog.py │ │ │ ├── busy_dialog.ui │ │ │ ├── config_item.py │ │ │ ├── default_app_icon_256.png │ │ │ ├── folder_256.png │ │ │ ├── fonts │ │ │ │ └── OpenSans │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ ├── OpenSans-CondLight.ttf │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ └── OpenSans-Regular.ttf │ │ │ ├── gradient.png │ │ │ ├── item.ui │ │ │ ├── pencil.png │ │ │ ├── reload_256.png │ │ │ ├── resources.qrc │ │ │ ├── resources_rc.py │ │ │ ├── sg_logo_80px.png │ │ │ ├── tank_dialog.ui │ │ │ ├── tank_logo.png │ │ │ ├── tankqdialog.py │ │ │ ├── toolkit_std_dark.css │ │ │ ├── ui_busy_dialog.py │ │ │ ├── ui_item.py │ │ │ └── ui_tank_dialog.py │ │ ├── qt5 │ │ │ └── __init__.py │ │ ├── qt6 │ │ │ └── __init__.py │ │ ├── software_launcher.py │ │ ├── util.py │ │ └── validation.py │ ├── template.py │ ├── template_includes.py │ ├── template_path_parser.py │ ├── templatekey.py │ └── util │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── environment.py │ │ ├── errors.py │ │ ├── filesystem.py │ │ ├── includes.py │ │ ├── json.py │ │ ├── loader.py │ │ ├── local_file_storage.py │ │ ├── login.py │ │ ├── metrics.py │ │ ├── metrics_cache.py │ │ ├── move_guard.py │ │ ├── pickle.py │ │ ├── platforms.py │ │ ├── process.py │ │ ├── pyside2_patcher.py │ │ ├── pyside6_patcher.py │ │ ├── qt_importer.py │ │ ├── resources │ │ └── no_preview.jpg │ │ ├── sgre.py │ │ ├── shotgun │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── download.py │ │ ├── publish_creation.py │ │ ├── publish_resolve.py │ │ └── publish_util.py │ │ ├── shotgun_entity.py │ │ ├── shotgun_path.py │ │ ├── singleton.py │ │ ├── storage_roots.py │ │ ├── system_settings.py │ │ ├── unicode.py │ │ ├── user_settings.py │ │ ├── version.py │ │ ├── yaml_cache.py │ │ └── zip.py └── tank_vendor │ ├── __init__.py │ ├── distro.py │ ├── packaging │ ├── __init__.py │ ├── _structures.py │ ├── py.typed │ └── version.py │ ├── ruamel │ └── yaml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── __init__.py │ │ ├── anchor.py │ │ ├── comments.py │ │ ├── compat.py │ │ ├── composer.py │ │ ├── configobjwalker.py │ │ ├── constructor.py │ │ ├── cyaml.py │ │ ├── docinfo.py │ │ ├── dumper.py │ │ ├── emitter.py │ │ ├── error.py │ │ ├── events.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── nodes.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── reader.py │ │ ├── representer.py │ │ ├── resolver.py │ │ ├── scalarbool.py │ │ ├── scalarfloat.py │ │ ├── scalarint.py │ │ ├── scalarstring.py │ │ ├── scanner.py │ │ ├── serializer.py │ │ ├── setup.py │ │ ├── tag.py │ │ ├── timestamp.py │ │ ├── tokens.py │ │ └── util.py │ ├── sgutils.py │ ├── shotgun_api3 │ ├── __init__.py │ ├── commit_id │ ├── lib │ │ ├── .gitignore │ │ ├── README.md │ │ ├── __init__.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ ├── core.py │ │ │ └── py.typed │ │ ├── httplib2 │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── cacerts.txt │ │ │ ├── certs.py │ │ │ ├── error.py │ │ │ ├── iri2uri.py │ │ │ └── socks.py │ │ ├── mockgun │ │ │ ├── __init__.py │ │ │ ├── errors.py │ │ │ ├── mockgun.py │ │ │ └── schema.py │ │ ├── pyparsing.py │ │ ├── requirements.txt │ │ └── sgtimezone.py │ ├── py.typed │ ├── shotgun.py │ └── software_credits │ ├── shotgun_authentication │ ├── README.md │ ├── __init__.py │ ├── defaults_manager.py │ ├── errors.py │ ├── shotgun_authenticator.py │ ├── user.py │ └── user_impl.py │ ├── six.py │ └── yaml │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── __init__.py │ ├── composer.py │ ├── constructor.py │ ├── cyaml.py │ ├── dumper.py │ ├── emitter.py │ ├── error.py │ ├── events.py │ ├── loader.py │ ├── nodes.py │ ├── parser.py │ ├── reader.py │ ├── representer.py │ ├── resolver.py │ ├── scanner.py │ ├── serializer.py │ └── tokens.py ├── scripts ├── tank_cmd.bat ├── tank_cmd.py ├── tank_cmd.sh └── tank_cmd_login.sh ├── setup.py ├── setup ├── root_binaries │ ├── tank │ └── tank.bat └── tank_api_proxy │ ├── sgtk │ └── __init__.py │ └── tank │ └── __init__.py ├── software_credits └── tests ├── README.md ├── __init__.py ├── authentication_tests ├── __init__.py ├── test_app_session_launcher.py ├── test_auth_settings.py ├── test_authentication_backwards_compatibility.py ├── test_interactive_authentication.py ├── test_saml_sso_core_utils.py ├── test_session_cache.py ├── test_shotgun_authenticator.py ├── test_shotgun_wrapper.py ├── test_user.py └── test_web_login.py ├── bootstrap_tests ├── __init__.py ├── test_backups.py ├── test_configuration.py ├── test_configuration_writer.py ├── test_manager.py └── test_resolver.py ├── commands_tests ├── __init__.py ├── test_core_update.py ├── test_pipeconfig.py ├── test_project_wizard.py ├── test_setupproject.py ├── test_updates.py └── test_validate.py ├── compile_python3.bat ├── compile_python3.sh ├── core_tests ├── __init__.py ├── test_api.py ├── test_context.py ├── test_default_storage_root_hook.py ├── test_default_storage_root_hook │ ├── example1 │ │ └── default_storage_root.py │ ├── example2 │ │ └── default_storage_root.py │ └── example3 │ │ └── default_storage_root.py ├── test_hook.py ├── test_includes.py ├── test_log.py ├── test_path_cache.py ├── test_pipeline_configuration.py ├── test_pipelineconfig_factory.py ├── test_pipelineconfig_utils.py ├── test_root.py ├── test_template.py ├── test_templatekey.py ├── test_templatepath.py └── test_templatestring.py ├── deploy_tests ├── __init__.py └── test_descriptors.py ├── descriptor_tests ├── __init__.py ├── test_api.py ├── test_appstore.py ├── test_descriptors.py ├── test_downloadables.py ├── test_git.py ├── test_github.py ├── test_io_descriptors.py └── test_shotgun.py ├── fixtures ├── app_store_tests │ ├── core │ │ ├── hooks │ │ │ ├── context_additional_entities.py │ │ │ └── pick_environment.py │ │ ├── roots.yml │ │ ├── schema │ │ │ ├── ignore_files │ │ │ └── project │ │ │ │ ├── assets │ │ │ │ ├── another_file_to_ignore │ │ │ │ ├── asset_type.yml │ │ │ │ ├── asset_type │ │ │ │ │ ├── asset.yml │ │ │ │ │ └── asset │ │ │ │ │ │ ├── step.yml │ │ │ │ │ │ └── step │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── out │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── publish │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── review │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ └── work │ │ │ │ │ │ └── snapshots │ │ │ │ │ │ └── .placeholder │ │ │ │ └── file_to_ignore │ │ │ │ ├── reference │ │ │ │ ├── artwork │ │ │ │ │ └── .placeholder │ │ │ │ └── footage │ │ │ │ │ └── .placeholder │ │ │ │ ├── scenes │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ │ ├── scene.yml │ │ │ │ │ └── scene │ │ │ │ │ └── work │ │ │ │ │ └── .placeholder │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ └── templates.yml │ ├── env │ │ ├── includes │ │ │ └── common_apps.yml │ │ ├── simple.yml │ │ └── updating_included_app.yml │ └── hooks │ │ └── place_holder ├── bootstrap_tests │ ├── config │ │ ├── core │ │ │ ├── core_api.yml │ │ │ ├── hooks │ │ │ │ └── pick_environment.py │ │ │ └── roots.yml │ │ └── env │ │ │ └── entity.yml │ ├── test_backups │ │ ├── bundle_cache │ │ │ └── placeholder │ │ └── core │ │ │ └── core_api.yml │ └── test_plugin │ │ ├── bootstrap.py │ │ └── info.yml ├── config │ ├── bundles │ │ ├── incomplete_engine │ │ │ ├── README.md │ │ │ ├── engine.py │ │ │ └── info.yml │ │ ├── test_app │ │ │ ├── app.py │ │ │ ├── hooks │ │ │ │ ├── inheritance1.py │ │ │ │ ├── inheritance2.py │ │ │ │ ├── inheritance_old_style.py │ │ │ │ ├── inheritance_old_style_fails.py │ │ │ │ ├── test_hook-test_engine.py │ │ │ │ └── test_hook.py │ │ │ └── info.yml │ │ ├── test_engine │ │ │ ├── engine.py │ │ │ ├── hooks │ │ │ │ ├── engine_test_hook.py │ │ │ │ ├── foo │ │ │ │ │ ├── bar.py │ │ │ │ │ └── inherit2.py │ │ │ │ ├── inherit.py │ │ │ │ └── named_hook.py │ │ │ ├── info.yml │ │ │ └── startup.py │ │ └── test_framework_v1 │ │ │ ├── framework.py │ │ │ ├── hooks │ │ │ └── test_hook.py │ │ │ └── info.yml │ ├── core.override │ │ ├── deferred_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── deferred_absent │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ │ └── .placeholder │ │ │ │ ├── deferred_false.yml │ │ │ │ ├── deferred_false │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ │ └── .placeholder │ │ │ │ ├── deferred_list_field.yml │ │ │ │ ├── deferred_list_field │ │ │ │ ├── deferred_asset.yml │ │ │ │ └── deferred_asset │ │ │ │ │ └── .placeholder │ │ │ │ ├── deferred_specified.yml │ │ │ │ ├── deferred_specified │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ │ └── .placeholder │ │ │ │ ├── deferred_specified_2.yml │ │ │ │ ├── deferred_specified_2 │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ │ └── .placeholder │ │ │ │ ├── deferred_true.yml │ │ │ │ └── deferred_true │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ └── .placeholder │ │ ├── humanuser_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── humanuser.yml │ │ │ │ └── humanuser │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ └── .placeholder │ │ ├── humanuser_step_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── humanuser.yml │ │ │ │ └── humanuser │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── multi_link_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── assets │ │ │ │ ├── asset_type.yml │ │ │ │ └── asset_type │ │ │ │ │ ├── asset.yml │ │ │ │ │ └── asset │ │ │ │ │ ├── workspace.yml │ │ │ │ │ └── workspace │ │ │ │ │ └── file_to_ignore │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── workspace.yml │ │ │ │ └── workspace │ │ │ │ └── file_to_ignore │ │ ├── multi_root_core │ │ │ ├── hooks │ │ │ │ ├── context_additional_entities.py │ │ │ │ └── pick_environment.py │ │ │ ├── schema │ │ │ │ ├── alternate_1.yml │ │ │ │ ├── alternate_1 │ │ │ │ │ ├── alternate_reference │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── assets │ │ │ │ │ │ ├── asset.yml │ │ │ │ │ │ └── asset │ │ │ │ │ │ ├── step.yml │ │ │ │ │ │ └── step │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── out │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── publish │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── review │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ └── work │ │ │ │ │ │ └── snapshots │ │ │ │ │ │ └── .placeholder │ │ │ │ ├── ignore_files │ │ │ │ ├── project.yml │ │ │ │ └── project │ │ │ │ │ ├── reference │ │ │ │ │ ├── artwork │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── footage │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── sequences │ │ │ │ │ ├── sequence.yml │ │ │ │ │ └── sequence │ │ │ │ │ ├── shot.yml │ │ │ │ │ └── shot │ │ │ │ │ ├── step.yml │ │ │ │ │ └── step │ │ │ │ │ ├── images │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── out │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── publish │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── review │ │ │ │ │ └── .placeholder │ │ │ │ │ └── work │ │ │ │ │ └── snapshots │ │ │ │ │ └── .placeholder │ │ │ └── templates.yml │ │ ├── optional_folder_fields │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ └── placeholder │ │ ├── secondary_entity │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── task.yml │ │ │ │ └── task │ │ │ │ └── images │ │ │ │ └── .placeholder │ │ ├── shotgun_multi_step_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── shotgun_multi_task_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── task.yml │ │ │ │ └── task │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── shotgun_single_custom_step_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── shotgun_single_step_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── shotgun_single_task_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── task.yml │ │ │ │ └── task │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ ├── static_filters_core │ │ │ └── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── publish.yml │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ └── symlinks_core │ │ │ └── schema │ │ │ ├── ignore_files │ │ │ └── project │ │ │ ├── asset_type.yml │ │ │ ├── asset_type │ │ │ ├── asset.yml │ │ │ └── asset │ │ │ │ ├── test.symlink.yml │ │ │ │ └── work │ │ │ │ └── workspace.mel │ │ │ ├── shot.yml │ │ │ └── shot │ │ │ ├── foo.symlink.yml │ │ │ └── work │ │ │ └── workspace.mel │ ├── core │ │ ├── hooks │ │ │ ├── context_additional_entities.py │ │ │ ├── pick_environment.py │ │ │ ├── template_setting_resolution.py │ │ │ └── test_evaluator.py │ │ ├── schema │ │ │ ├── ignore_files │ │ │ └── project │ │ │ │ ├── assets │ │ │ │ ├── another_file_to_ignore │ │ │ │ ├── asset_type.yml │ │ │ │ ├── asset_type │ │ │ │ │ ├── asset.yml │ │ │ │ │ └── asset │ │ │ │ │ │ ├── step.yml │ │ │ │ │ │ └── step │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── out │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── publish │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ ├── review │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ └── work │ │ │ │ │ │ └── snapshots │ │ │ │ │ │ └── .placeholder │ │ │ │ └── file_to_ignore │ │ │ │ ├── reference │ │ │ │ ├── artwork │ │ │ │ │ └── .placeholder │ │ │ │ └── footage │ │ │ │ │ └── .placeholder │ │ │ │ ├── scenes │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ │ ├── scene.yml │ │ │ │ │ └── scene │ │ │ │ │ └── work │ │ │ │ │ └── .placeholder │ │ │ │ └── sequences │ │ │ │ ├── sequence.yml │ │ │ │ └── sequence │ │ │ │ ├── shot.yml │ │ │ │ └── shot │ │ │ │ ├── step.yml │ │ │ │ └── step │ │ │ │ ├── images │ │ │ │ └── .placeholder │ │ │ │ ├── out │ │ │ │ └── .placeholder │ │ │ │ ├── publish │ │ │ │ └── .placeholder │ │ │ │ ├── review │ │ │ │ └── .placeholder │ │ │ │ └── work │ │ │ │ ├── snapshots │ │ │ │ └── .placeholder │ │ │ │ └── workspace.mel │ │ └── templates.yml │ ├── env │ │ ├── entity.yml │ │ ├── includes │ │ │ ├── empty_config.yml │ │ │ └── engine_location.yml │ │ ├── invalid_settings │ │ │ ├── empty_app_location.yml │ │ │ ├── empty_app_settings.yml │ │ │ ├── empty_engine_location.yml │ │ │ ├── empty_engine_settings.yml │ │ │ ├── empty_framework_location.yml │ │ │ ├── empty_framework_settings.yml │ │ │ ├── missing_app_location.yml │ │ │ ├── missing_engine_location.yml │ │ │ └── missing_framework_location.yml │ │ ├── post_update │ │ │ ├── test_post_update_new_parser.yml │ │ │ └── test_post_update_old_parser.yml │ │ ├── test.yml │ │ └── test_dump.yml │ ├── foo │ │ └── bar.png │ ├── hooks │ │ ├── config_test_hook-test_engine.py │ │ ├── config_test_hook.py │ │ ├── foo │ │ │ └── bar.py │ │ ├── inherit.py │ │ ├── inherit2.py │ │ ├── more_hooks │ │ │ └── config_test_hook.py │ │ ├── named_hook.py │ │ ├── no_app_implementation.py │ │ └── toolkitty.png │ └── info.yml ├── core_update_tests │ └── core │ │ └── core_api.yml ├── descriptor_tests │ ├── cached_configuration │ │ ├── core │ │ │ └── core_api.yml │ │ └── info.yml │ ├── cached_configuration_no_core │ │ └── info.yml │ ├── github │ │ ├── readme.md │ │ ├── releases.header │ │ ├── releases.json │ │ ├── releases_latest.header │ │ ├── releases_latest.json │ │ ├── releases_page_2.header │ │ ├── releases_page_2.json │ │ ├── repo_root.header │ │ ├── repo_root.json │ │ ├── repo_root_404.header │ │ ├── repo_root_404.json │ │ ├── repo_root_500.header │ │ └── repo_root_500.json │ └── with_bootstrap_hook │ │ ├── core │ │ ├── core_api.yml │ │ └── hooks │ │ │ ├── bootstrap.py │ │ │ └── pick_environment.py │ │ └── env │ │ └── project.yml ├── fixture_tests │ └── core │ │ └── pipeline_configuration.yml ├── integration_tests │ └── authentication │ │ ├── bad_credentials │ │ └── mixed ├── misc │ ├── glob_and_match │ │ ├── maya2014 │ │ │ └── placeholder │ │ ├── maya2015 │ │ │ └── placeholder │ │ ├── maya2016 │ │ │ └── placeholder │ │ ├── nuke10.0v5 │ │ │ └── placeholder │ │ ├── nuke13.0v9 │ │ │ └── placeholder │ │ ├── nuke15.1v2 │ │ │ └── placeholder │ │ ├── nukestudio14.0v1 │ │ │ └── placeholder │ │ └── nukex12.2v8 │ │ │ └── placeholder │ ├── tk-config-default.git │ │ ├── .gitignore │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── hooks │ │ │ ├── applypatch-msg.sample │ │ │ ├── commit-msg.sample │ │ │ ├── post-update.sample │ │ │ ├── pre-applypatch.sample │ │ │ ├── pre-commit.sample │ │ │ ├── pre-push.sample │ │ │ ├── pre-rebase.sample │ │ │ ├── prepare-commit-msg.sample │ │ │ └── update.sample │ │ ├── index │ │ ├── info │ │ │ └── exclude │ │ ├── logs │ │ │ ├── HEAD │ │ │ └── refs │ │ │ │ ├── heads │ │ │ │ ├── 018_test │ │ │ │ ├── 33014_nuke_studio │ │ │ │ └── master │ │ │ │ └── remotes │ │ │ │ └── origin │ │ │ │ └── HEAD │ │ ├── objects │ │ │ └── pack │ │ │ │ ├── pack-b4728dfef9a14f239497f2045c4e515d8e372f05.idx │ │ │ │ └── pack-b4728dfef9a14f239497f2045c4e515d8e372f05.pack │ │ ├── packed-refs │ │ └── refs │ │ │ ├── heads │ │ │ ├── 018_test │ │ │ ├── 33014_nuke_studio │ │ │ └── master │ │ │ └── remotes │ │ │ └── origin │ │ │ └── HEAD │ ├── yaml_cache │ │ ├── empty.yml │ │ └── test_data.yml │ └── zip │ │ ├── single_file.zip │ │ ├── tank_core.txt │ │ ├── tank_core.zip │ │ ├── zip_with_root_auto_detect.txt │ │ ├── zip_with_root_folder.txt │ │ └── zip_with_root_folder.zip ├── mockgun │ ├── schema.pickle │ ├── schema_entity.pickle │ └── update_schemas.py ├── publish_resolve │ └── core │ │ └── hooks │ │ └── resolve_publish.py ├── util │ ├── filesystem │ │ └── delete_folder │ │ │ ├── ReadOnly.txt │ │ │ ├── ReadWrite.txt │ │ │ └── SubFolder │ │ │ └── TextFile.txt │ └── storage_roots │ │ ├── corrupt_roots │ │ └── config │ │ │ └── core │ │ │ └── roots.yml │ │ ├── empty_roots │ │ └── config │ │ │ └── core │ │ │ └── roots.yml │ │ ├── multiple_roots │ │ └── config │ │ │ └── core │ │ │ └── roots.yml │ │ └── single_root │ │ └── config │ │ └── core │ │ └── roots.yml └── util_tests │ ├── json_saved_with_python_3.7.json │ ├── json_saved_with_python_3.9.json │ ├── pickle_saved_with_python_3.7.pickle │ └── pickle_saved_with_python_3.9.pickle ├── folder_tests ├── __init__.py ├── test_configuration.py ├── test_create_folders.py ├── test_deferred.py ├── test_optional_fields.py ├── test_secondary_entity.py ├── test_static_filter.py ├── test_step_node.py ├── test_symlinks.py ├── test_task_node.py └── test_user_sandbox.py ├── integration_tests ├── README.md ├── bootstrap_hook.py ├── data │ ├── simple_config │ │ ├── core │ │ │ ├── core_api.yml │ │ │ ├── hooks │ │ │ │ └── pick_environment.py │ │ │ ├── schema │ │ │ │ ├── ignore_files │ │ │ │ └── project │ │ │ │ │ ├── assets │ │ │ │ │ ├── another_file_to_ignore │ │ │ │ │ ├── asset_type.yml │ │ │ │ │ ├── asset_type │ │ │ │ │ │ ├── asset.yml │ │ │ │ │ │ └── asset │ │ │ │ │ │ │ ├── step.yml │ │ │ │ │ │ │ └── step │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ │ ├── out │ │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ │ ├── publish │ │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ │ ├── review │ │ │ │ │ │ │ └── .placeholder │ │ │ │ │ │ │ └── work │ │ │ │ │ │ │ └── snapshots │ │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── file_to_ignore │ │ │ │ │ ├── reference │ │ │ │ │ ├── artwork │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── footage │ │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── scenes │ │ │ │ │ ├── step.yml │ │ │ │ │ └── step │ │ │ │ │ │ ├── scene.yml │ │ │ │ │ │ └── scene │ │ │ │ │ │ └── work │ │ │ │ │ │ └── .placeholder │ │ │ │ │ └── sequences │ │ │ │ │ ├── sequence.yml │ │ │ │ │ └── sequence │ │ │ │ │ ├── shot.yml │ │ │ │ │ └── shot │ │ │ │ │ ├── step.yml │ │ │ │ │ └── step │ │ │ │ │ ├── images │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── out │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── publish │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── review │ │ │ │ │ └── .placeholder │ │ │ │ │ └── work │ │ │ │ │ ├── snapshots │ │ │ │ │ └── .placeholder │ │ │ │ │ └── workspace.mel │ │ │ └── templates.yml │ │ ├── env │ │ │ └── project.yml │ │ └── hooks │ │ │ └── placeholder │ └── site_config │ │ ├── core │ │ ├── core_api.yml │ │ ├── hooks │ │ │ └── pick_environment.py │ │ └── roots.yml │ │ ├── env │ │ └── project.yml │ │ └── hooks │ │ └── placeholder ├── import_sgtk.py ├── multi_bootstrap.py ├── offline_workflow.py ├── pip_install_bootstrap.py ├── run_integration_tests.py └── tank_commands.py ├── platform_tests ├── __init__.py ├── test_application.py ├── test_engine.py ├── test_environment.py ├── test_software_launcher.py └── test_validation.py ├── python ├── README.md ├── requirements.txt ├── sgtk_integration_test.py ├── tank_test │ ├── __init__.py │ ├── mock_appstore.py │ └── tank_test_base.py └── upgrade_third_party.sh ├── run_tests.bat ├── run_tests.py ├── run_tests.sh ├── tank_test_tests ├── __init__.py ├── test_decorators.py └── test_mockstore.py └── util_tests ├── __init__.py ├── test_filesystem.py ├── test_json_and_pickle.py ├── test_load_publish.py ├── test_local_path.py ├── test_login.py ├── test_metrics.py ├── test_metrics_cache.py ├── test_process.py ├── test_publish.py ├── test_pyside6_patcher.py ├── test_qt_importer.py ├── test_sgre.py ├── test_shotgun.py ├── test_shotgun_connect.py ├── test_shotgun_entity.py ├── test_shotgun_path.py ├── test_shotgun_publish_creation.py ├── test_storage_roots.py ├── test_system_settings.py ├── test_unicode.py ├── test_user_settings.py ├── test_version_compare.py ├── test_version_import.py ├── test_yaml_cache.py └── test_zip.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.hound.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tkdeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/.tkdeploy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_core_upgrader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/_core_upgrader.py -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/codecov.yml -------------------------------------------------------------------------------- /developer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/README.md -------------------------------------------------------------------------------- /developer/bake_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/bake_config.py -------------------------------------------------------------------------------- /developer/build_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/build_plugin.py -------------------------------------------------------------------------------- /developer/populate_bundle_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/populate_bundle_cache.py -------------------------------------------------------------------------------- /developer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/requirements.txt -------------------------------------------------------------------------------- /developer/shotgun_api_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/shotgun_api_update.sh -------------------------------------------------------------------------------- /developer/sso_saml2_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/sso_saml2_update.sh -------------------------------------------------------------------------------- /developer/upgrade_pyyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/upgrade_pyyaml.py -------------------------------------------------------------------------------- /developer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/utils/__init__.py -------------------------------------------------------------------------------- /developer/utils/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/utils/authentication.py -------------------------------------------------------------------------------- /developer/utils/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/utils/caching.py -------------------------------------------------------------------------------- /developer/utils/option_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/developer/utils/option_parser.py -------------------------------------------------------------------------------- /docs/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/authentication.rst -------------------------------------------------------------------------------- /docs/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/core.rst -------------------------------------------------------------------------------- /docs/descriptor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/descriptor.rst -------------------------------------------------------------------------------- /docs/environment_variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/environment_variables.rst -------------------------------------------------------------------------------- /docs/examples/bootstrap_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/examples/bootstrap_hook.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/initializing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/initializing.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/platform.rst -------------------------------------------------------------------------------- /docs/resources/descriptor/config_folder_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/descriptor/config_folder_token.png -------------------------------------------------------------------------------- /docs/resources/initializing/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/bootstrap.png -------------------------------------------------------------------------------- /docs/resources/initializing/bundle_cache_in_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/bundle_cache_in_config.png -------------------------------------------------------------------------------- /docs/resources/initializing/bundle_custom_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/bundle_custom_entity.png -------------------------------------------------------------------------------- /docs/resources/initializing/create_uploaded_config_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/create_uploaded_config_field.png -------------------------------------------------------------------------------- /docs/resources/initializing/dev_sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/dev_sandbox.png -------------------------------------------------------------------------------- /docs/resources/initializing/distributed_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/distributed_config.png -------------------------------------------------------------------------------- /docs/resources/initializing/engine_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/engine_files.png -------------------------------------------------------------------------------- /docs/resources/initializing/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/launch.png -------------------------------------------------------------------------------- /docs/resources/initializing/launch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/launch2.png -------------------------------------------------------------------------------- /docs/resources/initializing/manual_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/manual_install.png -------------------------------------------------------------------------------- /docs/resources/initializing/pipeline_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/pipeline_config.png -------------------------------------------------------------------------------- /docs/resources/initializing/plugin_ids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/plugin_ids.png -------------------------------------------------------------------------------- /docs/resources/initializing/project_site_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/project_site_git.png -------------------------------------------------------------------------------- /docs/resources/initializing/shared_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/shared_config.png -------------------------------------------------------------------------------- /docs/resources/initializing/tk_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/tk_project.png -------------------------------------------------------------------------------- /docs/resources/initializing/zip_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/initializing/zip_config.png -------------------------------------------------------------------------------- /docs/resources/overview/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/overview/overview.png -------------------------------------------------------------------------------- /docs/resources/source_files/descriptor.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/source_files/descriptor.graffle -------------------------------------------------------------------------------- /docs/resources/source_files/initializing.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/source_files/initializing.graffle -------------------------------------------------------------------------------- /docs/resources/source_files/overview.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/resources/source_files/overview.graffle -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /hooks/before_register_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/before_register_publish.py -------------------------------------------------------------------------------- /hooks/bundle_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/bundle_init.py -------------------------------------------------------------------------------- /hooks/cache_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/cache_location.py -------------------------------------------------------------------------------- /hooks/context_additional_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/context_additional_entities.py -------------------------------------------------------------------------------- /hooks/context_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/context_change.py -------------------------------------------------------------------------------- /hooks/default_storage_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/default_storage_root.py -------------------------------------------------------------------------------- /hooks/engine_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/engine_init.py -------------------------------------------------------------------------------- /hooks/ensure_folder_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/ensure_folder_exists.py -------------------------------------------------------------------------------- /hooks/example_template_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/example_template_hook.py -------------------------------------------------------------------------------- /hooks/get_current_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/get_current_login.py -------------------------------------------------------------------------------- /hooks/log_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/log_metrics.py -------------------------------------------------------------------------------- /hooks/pick_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/pick_environment.py -------------------------------------------------------------------------------- /hooks/pipeline_configuration_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/pipeline_configuration_init.py -------------------------------------------------------------------------------- /hooks/process_folder_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/process_folder_creation.py -------------------------------------------------------------------------------- /hooks/process_folder_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/process_folder_name.py -------------------------------------------------------------------------------- /hooks/resolve_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/resolve_publish.py -------------------------------------------------------------------------------- /hooks/tank_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/hooks/tank_init.py -------------------------------------------------------------------------------- /info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/info.yml -------------------------------------------------------------------------------- /python/sgtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/sgtk/__init__.py -------------------------------------------------------------------------------- /python/tank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/__init__.py -------------------------------------------------------------------------------- /python/tank/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/api.py -------------------------------------------------------------------------------- /python/tank/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/__init__.py -------------------------------------------------------------------------------- /python/tank/authentication/app_session_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/app_session_launcher.py -------------------------------------------------------------------------------- /python/tank/authentication/console_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/console_authentication.py -------------------------------------------------------------------------------- /python/tank/authentication/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/constants.py -------------------------------------------------------------------------------- /python/tank/authentication/core_defaults_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/core_defaults_manager.py -------------------------------------------------------------------------------- /python/tank/authentication/defaults_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/defaults_manager.py -------------------------------------------------------------------------------- /python/tank/authentication/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/errors.py -------------------------------------------------------------------------------- /python/tank/authentication/interactive_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/interactive_authentication.py -------------------------------------------------------------------------------- /python/tank/authentication/invoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/invoker.py -------------------------------------------------------------------------------- /python/tank/authentication/login_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/login_dialog.py -------------------------------------------------------------------------------- /python/tank/authentication/resources/backup_codes_light_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/backup_codes_light_bg.png -------------------------------------------------------------------------------- /python/tank/authentication/resources/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/down-arrow.png -------------------------------------------------------------------------------- /python/tank/authentication/resources/google_authenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/google_authenticator.png -------------------------------------------------------------------------------- /python/tank/authentication/resources/login.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/login.graffle -------------------------------------------------------------------------------- /python/tank/authentication/resources/login_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/login_dialog.ui -------------------------------------------------------------------------------- /python/tank/authentication/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/resources.qrc -------------------------------------------------------------------------------- /python/tank/authentication/resources/shotgun_logo_light_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/resources/shotgun_logo_light_medium.png -------------------------------------------------------------------------------- /python/tank/authentication/session_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/session_cache.py -------------------------------------------------------------------------------- /python/tank/authentication/shotgun_authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/shotgun_authenticator.py -------------------------------------------------------------------------------- /python/tank/authentication/shotgun_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/shotgun_wrapper.py -------------------------------------------------------------------------------- /python/tank/authentication/site_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/site_info.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/__init__.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/commit_id: -------------------------------------------------------------------------------- 1 | e8e4f97d101b0869a303f7514dcc4c8cf8574a4d 2 | -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/__init__.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/authentication_session_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/authentication_session_data.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/errors.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/sso_saml2_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/sso_saml2_core.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/username_password_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/username_password_dialog.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/core/utils.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/sso_saml2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/sso_saml2.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/sso_saml2_rv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/sso_saml2_rv.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/sso_saml2_toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/sso_saml2_toolkit.py -------------------------------------------------------------------------------- /python/tank/authentication/sso_saml2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/sso_saml2/utils.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/__init__.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/aspect_preserving_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/aspect_preserving_label.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/completion_filter_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/completion_filter_proxy.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/login_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/login_dialog.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/qt_abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/qt_abstraction.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/recent_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/recent_box.py -------------------------------------------------------------------------------- /python/tank/authentication/ui/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui/resources_rc.py -------------------------------------------------------------------------------- /python/tank/authentication/ui_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/ui_authentication.py -------------------------------------------------------------------------------- /python/tank/authentication/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/user.py -------------------------------------------------------------------------------- /python/tank/authentication/user_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/user_impl.py -------------------------------------------------------------------------------- /python/tank/authentication/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/utils.py -------------------------------------------------------------------------------- /python/tank/authentication/web_login_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/authentication/web_login_support.py -------------------------------------------------------------------------------- /python/tank/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/__init__.py -------------------------------------------------------------------------------- /python/tank/bootstrap/async_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/async_bootstrap.py -------------------------------------------------------------------------------- /python/tank/bootstrap/baked_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/baked_configuration.py -------------------------------------------------------------------------------- /python/tank/bootstrap/bundle_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/bundle_downloader.py -------------------------------------------------------------------------------- /python/tank/bootstrap/cached_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/cached_configuration.py -------------------------------------------------------------------------------- /python/tank/bootstrap/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/configuration.py -------------------------------------------------------------------------------- /python/tank/bootstrap/configuration_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/configuration_writer.py -------------------------------------------------------------------------------- /python/tank/bootstrap/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/constants.py -------------------------------------------------------------------------------- /python/tank/bootstrap/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/errors.py -------------------------------------------------------------------------------- /python/tank/bootstrap/hooks/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/hooks/bootstrap.py -------------------------------------------------------------------------------- /python/tank/bootstrap/import_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/import_handler.py -------------------------------------------------------------------------------- /python/tank/bootstrap/installed_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/installed_configuration.py -------------------------------------------------------------------------------- /python/tank/bootstrap/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/manager.py -------------------------------------------------------------------------------- /python/tank/bootstrap/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/bootstrap/resolver.py -------------------------------------------------------------------------------- /python/tank/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/__init__.py -------------------------------------------------------------------------------- /python/tank/commands/action_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/action_base.py -------------------------------------------------------------------------------- /python/tank/commands/app_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/app_info.py -------------------------------------------------------------------------------- /python/tank/commands/cache_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/cache_apps.py -------------------------------------------------------------------------------- /python/tank/commands/cache_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/cache_yaml.py -------------------------------------------------------------------------------- /python/tank/commands/clone_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/clone_configuration.py -------------------------------------------------------------------------------- /python/tank/commands/console_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/console_utils.py -------------------------------------------------------------------------------- /python/tank/commands/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/constants.py -------------------------------------------------------------------------------- /python/tank/commands/copy_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/copy_apps.py -------------------------------------------------------------------------------- /python/tank/commands/core_localize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/core_localize.py -------------------------------------------------------------------------------- /python/tank/commands/core_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/core_upgrade.py -------------------------------------------------------------------------------- /python/tank/commands/desktop_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/desktop_migration.py -------------------------------------------------------------------------------- /python/tank/commands/dump_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/dump_config.py -------------------------------------------------------------------------------- /python/tank/commands/folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/folders.py -------------------------------------------------------------------------------- /python/tank/commands/get_entity_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/get_entity_commands.py -------------------------------------------------------------------------------- /python/tank/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/install.py -------------------------------------------------------------------------------- /python/tank/commands/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/interaction.py -------------------------------------------------------------------------------- /python/tank/commands/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/misc.py -------------------------------------------------------------------------------- /python/tank/commands/move_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/move_pc.py -------------------------------------------------------------------------------- /python/tank/commands/path_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/path_cache.py -------------------------------------------------------------------------------- /python/tank/commands/pc_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/pc_overview.py -------------------------------------------------------------------------------- /python/tank/commands/push_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/push_pc.py -------------------------------------------------------------------------------- /python/tank/commands/setup_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/setup_project.py -------------------------------------------------------------------------------- /python/tank/commands/setup_project_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/setup_project_core.py -------------------------------------------------------------------------------- /python/tank/commands/setup_project_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/setup_project_params.py -------------------------------------------------------------------------------- /python/tank/commands/setup_project_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/setup_project_wizard.py -------------------------------------------------------------------------------- /python/tank/commands/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/switch.py -------------------------------------------------------------------------------- /python/tank/commands/tank_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/tank_command.py -------------------------------------------------------------------------------- /python/tank/commands/unregister_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/unregister_folders.py -------------------------------------------------------------------------------- /python/tank/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/update.py -------------------------------------------------------------------------------- /python/tank/commands/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/util.py -------------------------------------------------------------------------------- /python/tank/commands/validate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/commands/validate_config.py -------------------------------------------------------------------------------- /python/tank/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/constants.py -------------------------------------------------------------------------------- /python/tank/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/context.py -------------------------------------------------------------------------------- /python/tank/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/deploy/README.md -------------------------------------------------------------------------------- /python/tank/deploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/deploy/__init__.py -------------------------------------------------------------------------------- /python/tank/deploy/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/deploy/descriptor.py -------------------------------------------------------------------------------- /python/tank/deploy/dev_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/deploy/dev_descriptor.py -------------------------------------------------------------------------------- /python/tank/deploy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/deploy/util.py -------------------------------------------------------------------------------- /python/tank/descriptor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/__init__.py -------------------------------------------------------------------------------- /python/tank/descriptor/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/constants.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor_bundle.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor_cached_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor_cached_config.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor_config.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor_core.py -------------------------------------------------------------------------------- /python/tank/descriptor/descriptor_installed_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/descriptor_installed_config.py -------------------------------------------------------------------------------- /python/tank/descriptor/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/errors.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/__init__.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/appstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/appstore.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/base.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/dev.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/downloadable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/downloadable.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/factory.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/git.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/git_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/git_branch.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/git_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/git_tag.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/github_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/github_release.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/manual.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/path.py -------------------------------------------------------------------------------- /python/tank/descriptor/io_descriptor/shotgun_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/io_descriptor/shotgun_entity.py -------------------------------------------------------------------------------- /python/tank/descriptor/resources/default_bundle_256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/resources/default_bundle_256px.png -------------------------------------------------------------------------------- /python/tank/descriptor/resources/resources.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/descriptor/resources/resources.graffle -------------------------------------------------------------------------------- /python/tank/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/errors.py -------------------------------------------------------------------------------- /python/tank/folder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/__init__.py -------------------------------------------------------------------------------- /python/tank/folder/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/configuration.py -------------------------------------------------------------------------------- /python/tank/folder/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/constants.py -------------------------------------------------------------------------------- /python/tank/folder/folder_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_io.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/__init__.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/base.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/entity.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/errors.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/expression_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/expression_tokens.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/listfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/listfield.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/project.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/static.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/step.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/task.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/user.py -------------------------------------------------------------------------------- /python/tank/folder/folder_types/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/folder_types/util.py -------------------------------------------------------------------------------- /python/tank/folder/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/folder/operations.py -------------------------------------------------------------------------------- /python/tank/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/hook.py -------------------------------------------------------------------------------- /python/tank/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/log.py -------------------------------------------------------------------------------- /python/tank/path_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/path_cache.py -------------------------------------------------------------------------------- /python/tank/pipelineconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/pipelineconfig.py -------------------------------------------------------------------------------- /python/tank/pipelineconfig_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/pipelineconfig_factory.py -------------------------------------------------------------------------------- /python/tank/pipelineconfig_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/pipelineconfig_utils.py -------------------------------------------------------------------------------- /python/tank/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/__init__.py -------------------------------------------------------------------------------- /python/tank/platform/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/application.py -------------------------------------------------------------------------------- /python/tank/platform/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/bundle.py -------------------------------------------------------------------------------- /python/tank/platform/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/constants.py -------------------------------------------------------------------------------- /python/tank/platform/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/engine.py -------------------------------------------------------------------------------- /python/tank/platform/engine_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/engine_logging.py -------------------------------------------------------------------------------- /python/tank/platform/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/environment.py -------------------------------------------------------------------------------- /python/tank/platform/environment_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/environment_includes.py -------------------------------------------------------------------------------- /python/tank/platform/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/errors.py -------------------------------------------------------------------------------- /python/tank/platform/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/events/__init__.py -------------------------------------------------------------------------------- /python/tank/platform/events/event_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/events/event_engine.py -------------------------------------------------------------------------------- /python/tank/platform/events/event_file_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/events/event_file_close.py -------------------------------------------------------------------------------- /python/tank/platform/events/event_file_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/events/event_file_open.py -------------------------------------------------------------------------------- /python/tank/platform/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/framework.py -------------------------------------------------------------------------------- /python/tank/platform/import_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/import_stack.py -------------------------------------------------------------------------------- /python/tank/platform/qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/__init__.py -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow.png -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow_flipped.png -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow_flipped_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow_flipped_hover.png -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow_flipped_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow_flipped_pressed.png -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow_hover.png -------------------------------------------------------------------------------- /python/tank/platform/qt/arrow_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/arrow_pressed.png -------------------------------------------------------------------------------- /python/tank/platform/qt/book_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/book_256.png -------------------------------------------------------------------------------- /python/tank/platform/qt/busy_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/busy_dialog.py -------------------------------------------------------------------------------- /python/tank/platform/qt/busy_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/busy_dialog.ui -------------------------------------------------------------------------------- /python/tank/platform/qt/config_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/config_item.py -------------------------------------------------------------------------------- /python/tank/platform/qt/default_app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/default_app_icon_256.png -------------------------------------------------------------------------------- /python/tank/platform/qt/folder_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/folder_256.png -------------------------------------------------------------------------------- /python/tank/platform/qt/fonts/OpenSans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/fonts/OpenSans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /python/tank/platform/qt/fonts/OpenSans/OpenSans-CondLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/fonts/OpenSans/OpenSans-CondLight.ttf -------------------------------------------------------------------------------- /python/tank/platform/qt/fonts/OpenSans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/fonts/OpenSans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /python/tank/platform/qt/fonts/OpenSans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/fonts/OpenSans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /python/tank/platform/qt/fonts/OpenSans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/fonts/OpenSans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /python/tank/platform/qt/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/gradient.png -------------------------------------------------------------------------------- /python/tank/platform/qt/item.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/item.ui -------------------------------------------------------------------------------- /python/tank/platform/qt/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/pencil.png -------------------------------------------------------------------------------- /python/tank/platform/qt/reload_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/reload_256.png -------------------------------------------------------------------------------- /python/tank/platform/qt/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/resources.qrc -------------------------------------------------------------------------------- /python/tank/platform/qt/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/resources_rc.py -------------------------------------------------------------------------------- /python/tank/platform/qt/sg_logo_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/sg_logo_80px.png -------------------------------------------------------------------------------- /python/tank/platform/qt/tank_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/tank_dialog.ui -------------------------------------------------------------------------------- /python/tank/platform/qt/tank_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/tank_logo.png -------------------------------------------------------------------------------- /python/tank/platform/qt/tankqdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/tankqdialog.py -------------------------------------------------------------------------------- /python/tank/platform/qt/toolkit_std_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/toolkit_std_dark.css -------------------------------------------------------------------------------- /python/tank/platform/qt/ui_busy_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/ui_busy_dialog.py -------------------------------------------------------------------------------- /python/tank/platform/qt/ui_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/ui_item.py -------------------------------------------------------------------------------- /python/tank/platform/qt/ui_tank_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt/ui_tank_dialog.py -------------------------------------------------------------------------------- /python/tank/platform/qt5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt5/__init__.py -------------------------------------------------------------------------------- /python/tank/platform/qt6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/qt6/__init__.py -------------------------------------------------------------------------------- /python/tank/platform/software_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/software_launcher.py -------------------------------------------------------------------------------- /python/tank/platform/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/util.py -------------------------------------------------------------------------------- /python/tank/platform/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/platform/validation.py -------------------------------------------------------------------------------- /python/tank/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/template.py -------------------------------------------------------------------------------- /python/tank/template_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/template_includes.py -------------------------------------------------------------------------------- /python/tank/template_path_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/template_path_parser.py -------------------------------------------------------------------------------- /python/tank/templatekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/templatekey.py -------------------------------------------------------------------------------- /python/tank/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/__init__.py -------------------------------------------------------------------------------- /python/tank/util/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/constants.py -------------------------------------------------------------------------------- /python/tank/util/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/environment.py -------------------------------------------------------------------------------- /python/tank/util/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/errors.py -------------------------------------------------------------------------------- /python/tank/util/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/filesystem.py -------------------------------------------------------------------------------- /python/tank/util/includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/includes.py -------------------------------------------------------------------------------- /python/tank/util/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/json.py -------------------------------------------------------------------------------- /python/tank/util/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/loader.py -------------------------------------------------------------------------------- /python/tank/util/local_file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/local_file_storage.py -------------------------------------------------------------------------------- /python/tank/util/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/login.py -------------------------------------------------------------------------------- /python/tank/util/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/metrics.py -------------------------------------------------------------------------------- /python/tank/util/metrics_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/metrics_cache.py -------------------------------------------------------------------------------- /python/tank/util/move_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/move_guard.py -------------------------------------------------------------------------------- /python/tank/util/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/pickle.py -------------------------------------------------------------------------------- /python/tank/util/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/platforms.py -------------------------------------------------------------------------------- /python/tank/util/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/process.py -------------------------------------------------------------------------------- /python/tank/util/pyside2_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/pyside2_patcher.py -------------------------------------------------------------------------------- /python/tank/util/pyside6_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/pyside6_patcher.py -------------------------------------------------------------------------------- /python/tank/util/qt_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/qt_importer.py -------------------------------------------------------------------------------- /python/tank/util/resources/no_preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/resources/no_preview.jpg -------------------------------------------------------------------------------- /python/tank/util/sgre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/sgre.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/__init__.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/connection.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/download.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/publish_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/publish_creation.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/publish_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/publish_resolve.py -------------------------------------------------------------------------------- /python/tank/util/shotgun/publish_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun/publish_util.py -------------------------------------------------------------------------------- /python/tank/util/shotgun_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun_entity.py -------------------------------------------------------------------------------- /python/tank/util/shotgun_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/shotgun_path.py -------------------------------------------------------------------------------- /python/tank/util/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/singleton.py -------------------------------------------------------------------------------- /python/tank/util/storage_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/storage_roots.py -------------------------------------------------------------------------------- /python/tank/util/system_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/system_settings.py -------------------------------------------------------------------------------- /python/tank/util/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/unicode.py -------------------------------------------------------------------------------- /python/tank/util/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/user_settings.py -------------------------------------------------------------------------------- /python/tank/util/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/version.py -------------------------------------------------------------------------------- /python/tank/util/yaml_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/yaml_cache.py -------------------------------------------------------------------------------- /python/tank/util/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank/util/zip.py -------------------------------------------------------------------------------- /python/tank_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/distro.py -------------------------------------------------------------------------------- /python/tank_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /python/tank_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tank_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/packaging/version.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/CHANGES -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/LICENSE -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/MANIFEST.in -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/README.md -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/anchor.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/comments.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/compat.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/composer.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/configobjwalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/configobjwalker.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/constructor.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/cyaml.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/docinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/docinfo.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/dumper.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/emitter.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/error.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/events.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/loader.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/main.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/nodes.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/parser.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/reader.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/representer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/representer.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/resolver.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/scalarbool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/scalarbool.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/scalarfloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/scalarfloat.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/scalarint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/scalarint.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/scalarstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/scalarstring.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/scanner.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/serializer.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/setup.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/tag.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/timestamp.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/tokens.py -------------------------------------------------------------------------------- /python/tank_vendor/ruamel/yaml/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/ruamel/yaml/util.py -------------------------------------------------------------------------------- /python/tank_vendor/sgutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/sgutils.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/commit_id: -------------------------------------------------------------------------------- 1 | 24fa0e1d2354170b3e28d3370ba6e7e9df20b5d4 2 | -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.dist-info -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/README.md -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/certifi/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/certifi/__main__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/certifi/cacert.pem -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/certifi/core.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/auth.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/cacerts.txt -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/certs.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/error.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/iri2uri.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/httplib2/socks.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/mockgun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/mockgun/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/mockgun/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/mockgun/errors.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/mockgun/mockgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/mockgun/mockgun.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/mockgun/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/mockgun/schema.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/pyparsing.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/requirements.txt -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/lib/sgtimezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/lib/sgtimezone.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/shotgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/shotgun.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_api3/software_credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_api3/software_credits -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/README.md -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/defaults_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/defaults_manager.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/errors.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/shotgun_authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/shotgun_authenticator.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/user.py -------------------------------------------------------------------------------- /python/tank_vendor/shotgun_authentication/user_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/shotgun_authentication/user_impl.py -------------------------------------------------------------------------------- /python/tank_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/six.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/CHANGES -------------------------------------------------------------------------------- /python/tank_vendor/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/LICENSE -------------------------------------------------------------------------------- /python/tank_vendor/yaml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/README -------------------------------------------------------------------------------- /python/tank_vendor/yaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/__init__.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/composer.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/constructor.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/cyaml.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/dumper.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/emitter.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/error.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/events.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/loader.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/nodes.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/parser.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/reader.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/representer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/representer.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/resolver.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/scanner.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/serializer.py -------------------------------------------------------------------------------- /python/tank_vendor/yaml/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/python/tank_vendor/yaml/tokens.py -------------------------------------------------------------------------------- /scripts/tank_cmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/scripts/tank_cmd.bat -------------------------------------------------------------------------------- /scripts/tank_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/scripts/tank_cmd.py -------------------------------------------------------------------------------- /scripts/tank_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/scripts/tank_cmd.sh -------------------------------------------------------------------------------- /scripts/tank_cmd_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/scripts/tank_cmd_login.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/setup.py -------------------------------------------------------------------------------- /setup/root_binaries/tank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/setup/root_binaries/tank -------------------------------------------------------------------------------- /setup/root_binaries/tank.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/setup/root_binaries/tank.bat -------------------------------------------------------------------------------- /setup/tank_api_proxy/sgtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/setup/tank_api_proxy/sgtk/__init__.py -------------------------------------------------------------------------------- /setup/tank_api_proxy/tank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/setup/tank_api_proxy/tank/__init__.py -------------------------------------------------------------------------------- /software_credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/software_credits -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/authentication_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/__init__.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_app_session_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_app_session_launcher.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_auth_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_auth_settings.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_interactive_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_interactive_authentication.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_saml_sso_core_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_saml_sso_core_utils.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_session_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_session_cache.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_shotgun_authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_shotgun_authenticator.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_shotgun_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_shotgun_wrapper.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_user.py -------------------------------------------------------------------------------- /tests/authentication_tests/test_web_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/authentication_tests/test_web_login.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/__init__.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/test_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/test_backups.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/test_configuration.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/test_configuration_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/test_configuration_writer.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/test_manager.py -------------------------------------------------------------------------------- /tests/bootstrap_tests/test_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/bootstrap_tests/test_resolver.py -------------------------------------------------------------------------------- /tests/commands_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands_tests/test_core_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_core_update.py -------------------------------------------------------------------------------- /tests/commands_tests/test_pipeconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_pipeconfig.py -------------------------------------------------------------------------------- /tests/commands_tests/test_project_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_project_wizard.py -------------------------------------------------------------------------------- /tests/commands_tests/test_setupproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_setupproject.py -------------------------------------------------------------------------------- /tests/commands_tests/test_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_updates.py -------------------------------------------------------------------------------- /tests/commands_tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/commands_tests/test_validate.py -------------------------------------------------------------------------------- /tests/compile_python3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/compile_python3.bat -------------------------------------------------------------------------------- /tests/compile_python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/compile_python3.sh -------------------------------------------------------------------------------- /tests/core_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_api.py -------------------------------------------------------------------------------- /tests/core_tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_context.py -------------------------------------------------------------------------------- /tests/core_tests/test_default_storage_root_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_default_storage_root_hook.py -------------------------------------------------------------------------------- /tests/core_tests/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_hook.py -------------------------------------------------------------------------------- /tests/core_tests/test_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_includes.py -------------------------------------------------------------------------------- /tests/core_tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_log.py -------------------------------------------------------------------------------- /tests/core_tests/test_path_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_path_cache.py -------------------------------------------------------------------------------- /tests/core_tests/test_pipeline_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_pipeline_configuration.py -------------------------------------------------------------------------------- /tests/core_tests/test_pipelineconfig_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_pipelineconfig_factory.py -------------------------------------------------------------------------------- /tests/core_tests/test_pipelineconfig_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_pipelineconfig_utils.py -------------------------------------------------------------------------------- /tests/core_tests/test_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_root.py -------------------------------------------------------------------------------- /tests/core_tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_template.py -------------------------------------------------------------------------------- /tests/core_tests/test_templatekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_templatekey.py -------------------------------------------------------------------------------- /tests/core_tests/test_templatepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_templatepath.py -------------------------------------------------------------------------------- /tests/core_tests/test_templatestring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/core_tests/test_templatestring.py -------------------------------------------------------------------------------- /tests/deploy_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/deploy_tests/test_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/deploy_tests/test_descriptors.py -------------------------------------------------------------------------------- /tests/descriptor_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/__init__.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_api.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_appstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_appstore.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_descriptors.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_downloadables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_downloadables.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_git.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_github.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_io_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_io_descriptors.py -------------------------------------------------------------------------------- /tests/descriptor_tests/test_shotgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/descriptor_tests/test_shotgun.py -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/hooks/context_additional_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/hooks/context_additional_entities.py -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/hooks/pick_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/hooks/pick_environment.py -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/roots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/roots.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/schema/project/assets/asset_type.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type/asset/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type/asset/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type/asset/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type/asset/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/asset_type/asset/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/assets/file_to_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/schema/project/assets/file_to_ignore -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/reference/artwork/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/reference/footage/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/scenes/step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/schema/project/scenes/step.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/scenes/step/scene.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/schema/project/scenes/step/scene.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/scenes/step/scene/work/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/core/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/core/templates.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/env/includes/common_apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/env/includes/common_apps.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/env/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/env/simple.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/env/updating_included_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/app_store_tests/env/updating_included_app.yml -------------------------------------------------------------------------------- /tests/fixtures/app_store_tests/hooks/place_holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/config/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/config/core/core_api.yml -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/config/core/hooks/pick_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/config/core/hooks/pick_environment.py -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/config/core/roots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/config/core/roots.yml -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/config/env/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/config/env/entity.yml -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/test_backups/bundle_cache/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/test_backups/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/test_backups/core/core_api.yml -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/test_plugin/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/test_plugin/bootstrap.py -------------------------------------------------------------------------------- /tests/fixtures/bootstrap_tests/test_plugin/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/bootstrap_tests/test_plugin/info.yml -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/incomplete_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/incomplete_engine/README.md -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/incomplete_engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/incomplete_engine/engine.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/incomplete_engine/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/incomplete_engine/info.yml -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/app.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/hooks/inheritance1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/hooks/inheritance1.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/hooks/inheritance2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/hooks/inheritance2.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/hooks/inheritance_old_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/hooks/inheritance_old_style.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/hooks/test_hook-test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/hooks/test_hook-test_engine.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/hooks/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/hooks/test_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_app/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_app/info.yml -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/engine.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/hooks/engine_test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/hooks/engine_test_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/hooks/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/hooks/foo/bar.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/hooks/foo/inherit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/hooks/foo/inherit2.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/hooks/inherit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/hooks/inherit.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/hooks/named_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/hooks/named_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/info.yml -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_engine/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_engine/startup.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_framework_v1/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_framework_v1/framework.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_framework_v1/hooks/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_framework_v1/hooks/test_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/bundles/test_framework_v1/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/bundles/test_framework_v1/info.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/deferred_core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_absent/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_false/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_list_field/deferred_asset/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_specified/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_specified_2/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/deferred_core/schema/project/deferred_true/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/humanuser_core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_core/schema/project/humanuser.yml: -------------------------------------------------------------------------------- 1 | type: user_workspace 2 | name: login 3 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_core/schema/project/humanuser/shot/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser.yml: -------------------------------------------------------------------------------- 1 | type: user_workspace 2 | name: login 3 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/humanuser_step_core/schema/project/sequences/sequence/shot/humanuser/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_link_core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/multi_link_core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/alternate_reference/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/assets/asset/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/assets/asset/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/assets/asset/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/assets/asset/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/alternate_1/assets/asset/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/multi_root_core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/multi_root_core/schema/project.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/reference/artwork/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/reference/footage/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/multi_root_core/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/multi_root_core/templates.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/secondary_entity/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/secondary_entity/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/secondary_entity/schema/project/shot/task/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_step_core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_step_core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_step_core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_step_core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_step_core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_task_core/schema/project/sequences/sequence/shot/task/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_task_core/schema/project/sequences/sequence/shot/task/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_task_core/schema/project/sequences/sequence/shot/task/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_task_core/schema/project/sequences/sequence/shot/task/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_multi_task_core/schema/project/sequences/sequence/shot/task/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_custom_step_core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_custom_step_core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_custom_step_core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_custom_step_core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_custom_step_core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_step_core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_step_core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_step_core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_step_core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_step_core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_task_core/schema/project/sequences/sequence/shot/task/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_task_core/schema/project/sequences/sequence/shot/task/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_task_core/schema/project/sequences/sequence/shot/task/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_task_core/schema/project/sequences/sequence/shot/task/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/shotgun_single_task_core/schema/project/sequences/sequence/shot/task/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/static_filters_core/schema/project/shot/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/static_filters_core/schema/project/shot/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/symlinks_core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core.override/symlinks_core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core.override/symlinks_core/schema/project/shot/foo.symlink.yml: -------------------------------------------------------------------------------- 1 | 2 | # the type of dynamic content 3 | target: "../Stuff/$Project/$Shot" 4 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/hooks/context_additional_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/hooks/context_additional_entities.py -------------------------------------------------------------------------------- /tests/fixtures/config/core/hooks/pick_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/hooks/pick_environment.py -------------------------------------------------------------------------------- /tests/fixtures/config/core/hooks/template_setting_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/hooks/template_setting_resolution.py -------------------------------------------------------------------------------- /tests/fixtures/config/core/hooks/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/hooks/test_evaluator.py -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/ignore_files -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/another_file_to_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/assets/another_file_to_ignore -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/assets/asset_type.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/assets/asset_type/asset.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/asset_type/asset/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/assets/file_to_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/assets/file_to_ignore -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/reference/artwork/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/reference/footage/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/scenes/step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/scenes/step.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/scenes/step/scene.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/scenes/step/scene.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/scenes/step/scene/work/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/sequences/sequence.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/schema/project/sequences/sequence/shot.yml -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/config/core/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/core/templates.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/entity.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/includes/empty_config.yml: -------------------------------------------------------------------------------- 1 | # this was intentionally left empty 2 | -------------------------------------------------------------------------------- /tests/fixtures/config/env/includes/engine_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/includes/engine_location.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_app_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_app_location.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_app_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_app_settings.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_engine_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_engine_location.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_engine_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_engine_settings.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_framework_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_framework_location.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/empty_framework_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/empty_framework_settings.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/invalid_settings/missing_app_location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/invalid_settings/missing_app_location.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/post_update/test_post_update_new_parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/post_update/test_post_update_new_parser.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/post_update/test_post_update_old_parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/post_update/test_post_update_old_parser.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/test.yml -------------------------------------------------------------------------------- /tests/fixtures/config/env/test_dump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/env/test_dump.yml -------------------------------------------------------------------------------- /tests/fixtures/config/foo/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/foo/bar.png -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/config_test_hook-test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/config_test_hook-test_engine.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/config_test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/config_test_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/foo/bar.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/inherit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/inherit.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/inherit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/inherit2.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/more_hooks/config_test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/more_hooks/config_test_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/named_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/named_hook.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/no_app_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/no_app_implementation.py -------------------------------------------------------------------------------- /tests/fixtures/config/hooks/toolkitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/hooks/toolkitty.png -------------------------------------------------------------------------------- /tests/fixtures/config/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/config/info.yml -------------------------------------------------------------------------------- /tests/fixtures/core_update_tests/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/core_update_tests/core/core_api.yml -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/cached_configuration/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/cached_configuration/info.yml -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/cached_configuration_no_core/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/cached_configuration_no_core/info.yml -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/readme.md -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases_latest.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases_latest.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases_latest.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases_page_2.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases_page_2.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/releases_page_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/releases_page_2.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root_404.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root_404.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root_404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root_404.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root_500.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root_500.header -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/github/repo_root_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/github/repo_root_500.json -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/with_bootstrap_hook/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/with_bootstrap_hook/core/core_api.yml -------------------------------------------------------------------------------- /tests/fixtures/descriptor_tests/with_bootstrap_hook/env/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/descriptor_tests/with_bootstrap_hook/env/project.yml -------------------------------------------------------------------------------- /tests/fixtures/fixture_tests/core/pipeline_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/fixture_tests/core/pipeline_configuration.yml -------------------------------------------------------------------------------- /tests/fixtures/integration_tests/authentication/bad_credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/integration_tests/authentication/bad_credentials -------------------------------------------------------------------------------- /tests/fixtures/integration_tests/authentication/mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/integration_tests/authentication/mixed -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/maya2014/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/maya2015/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/maya2016/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/nuke10.0v5/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/nuke13.0v9/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/nuke15.1v2/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/nukestudio14.0v1/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/glob_and_match/nukex12.2v8/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/.gitignore -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/config -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/description -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/commit-msg.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/post-update.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/pre-commit.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/pre-push.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/hooks/update.sample -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/index -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/info/exclude -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/logs/HEAD -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/logs/refs/heads/018_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/logs/refs/heads/018_test -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/logs/refs/heads/master -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/tk-config-default.git/packed-refs -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/refs/heads/018_test: -------------------------------------------------------------------------------- 1 | 7fa75a749c1dfdbd9ad93ee3497c7eaa8e1a488d 2 | -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/refs/heads/33014_nuke_studio: -------------------------------------------------------------------------------- 1 | e1c03faed94346ad77fad2e700edcff1e449f6f4 2 | -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 30c293f29a50b1e58d2580522656695825523dba 2 | -------------------------------------------------------------------------------- /tests/fixtures/misc/tk-config-default.git/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /tests/fixtures/misc/yaml_cache/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/misc/yaml_cache/test_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/yaml_cache/test_data.yml -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/single_file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/single_file.zip -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/tank_core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/tank_core.txt -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/tank_core.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/tank_core.zip -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/zip_with_root_auto_detect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/zip_with_root_auto_detect.txt -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/zip_with_root_folder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/zip_with_root_folder.txt -------------------------------------------------------------------------------- /tests/fixtures/misc/zip/zip_with_root_folder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/misc/zip/zip_with_root_folder.zip -------------------------------------------------------------------------------- /tests/fixtures/mockgun/schema.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/mockgun/schema.pickle -------------------------------------------------------------------------------- /tests/fixtures/mockgun/schema_entity.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/mockgun/schema_entity.pickle -------------------------------------------------------------------------------- /tests/fixtures/mockgun/update_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/mockgun/update_schemas.py -------------------------------------------------------------------------------- /tests/fixtures/publish_resolve/core/hooks/resolve_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/publish_resolve/core/hooks/resolve_publish.py -------------------------------------------------------------------------------- /tests/fixtures/util/filesystem/delete_folder/ReadOnly.txt: -------------------------------------------------------------------------------- 1 | Read Only 2 | -------------------------------------------------------------------------------- /tests/fixtures/util/filesystem/delete_folder/ReadWrite.txt: -------------------------------------------------------------------------------- 1 | Read Write 2 | -------------------------------------------------------------------------------- /tests/fixtures/util/filesystem/delete_folder/SubFolder/TextFile.txt: -------------------------------------------------------------------------------- 1 | TextFile in subfolder 2 | -------------------------------------------------------------------------------- /tests/fixtures/util/storage_roots/corrupt_roots/config/core/roots.yml: -------------------------------------------------------------------------------- 1 | foo: true: false 2 | -------------------------------------------------------------------------------- /tests/fixtures/util/storage_roots/empty_roots/config/core/roots.yml: -------------------------------------------------------------------------------- 1 | # this file should be empty 2 | -------------------------------------------------------------------------------- /tests/fixtures/util/storage_roots/single_root/config/core/roots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/util/storage_roots/single_root/config/core/roots.yml -------------------------------------------------------------------------------- /tests/fixtures/util_tests/json_saved_with_python_3.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/util_tests/json_saved_with_python_3.7.json -------------------------------------------------------------------------------- /tests/fixtures/util_tests/json_saved_with_python_3.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/util_tests/json_saved_with_python_3.9.json -------------------------------------------------------------------------------- /tests/fixtures/util_tests/pickle_saved_with_python_3.7.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/util_tests/pickle_saved_with_python_3.7.pickle -------------------------------------------------------------------------------- /tests/fixtures/util_tests/pickle_saved_with_python_3.9.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/fixtures/util_tests/pickle_saved_with_python_3.9.pickle -------------------------------------------------------------------------------- /tests/folder_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/__init__.py -------------------------------------------------------------------------------- /tests/folder_tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_configuration.py -------------------------------------------------------------------------------- /tests/folder_tests/test_create_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_create_folders.py -------------------------------------------------------------------------------- /tests/folder_tests/test_deferred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_deferred.py -------------------------------------------------------------------------------- /tests/folder_tests/test_optional_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_optional_fields.py -------------------------------------------------------------------------------- /tests/folder_tests/test_secondary_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_secondary_entity.py -------------------------------------------------------------------------------- /tests/folder_tests/test_static_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_static_filter.py -------------------------------------------------------------------------------- /tests/folder_tests/test_step_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_step_node.py -------------------------------------------------------------------------------- /tests/folder_tests/test_symlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_symlinks.py -------------------------------------------------------------------------------- /tests/folder_tests/test_task_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_task_node.py -------------------------------------------------------------------------------- /tests/folder_tests/test_user_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/folder_tests/test_user_sandbox.py -------------------------------------------------------------------------------- /tests/integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/README.md -------------------------------------------------------------------------------- /tests/integration_tests/bootstrap_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/bootstrap_hook.py -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/simple_config/core/core_api.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/ignore_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/simple_config/core/schema/ignore_files -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/assets/asset_type/asset/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/assets/asset_type/asset/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/assets/asset_type/asset/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/assets/asset_type/asset/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/assets/asset_type/asset/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/reference/artwork/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/reference/footage/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/scenes/step/scene/work/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/sequences/sequence/shot/step/images/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/sequences/sequence/shot/step/out/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/sequences/sequence/shot/step/publish/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/sequences/sequence/shot/step/review/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/schema/project/sequences/sequence/shot/step/work/snapshots/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/core/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/simple_config/core/templates.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/env/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/simple_config/env/project.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/simple_config/hooks/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/simple_config/hooks/placeholder -------------------------------------------------------------------------------- /tests/integration_tests/data/site_config/core/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/site_config/core/core_api.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/site_config/core/roots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/site_config/core/roots.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/site_config/env/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/site_config/env/project.yml -------------------------------------------------------------------------------- /tests/integration_tests/data/site_config/hooks/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/data/site_config/hooks/placeholder -------------------------------------------------------------------------------- /tests/integration_tests/import_sgtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/import_sgtk.py -------------------------------------------------------------------------------- /tests/integration_tests/multi_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/multi_bootstrap.py -------------------------------------------------------------------------------- /tests/integration_tests/offline_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/offline_workflow.py -------------------------------------------------------------------------------- /tests/integration_tests/pip_install_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/pip_install_bootstrap.py -------------------------------------------------------------------------------- /tests/integration_tests/run_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/run_integration_tests.py -------------------------------------------------------------------------------- /tests/integration_tests/tank_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/integration_tests/tank_commands.py -------------------------------------------------------------------------------- /tests/platform_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/platform_tests/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/platform_tests/test_application.py -------------------------------------------------------------------------------- /tests/platform_tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/platform_tests/test_engine.py -------------------------------------------------------------------------------- /tests/platform_tests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/platform_tests/test_environment.py -------------------------------------------------------------------------------- /tests/platform_tests/test_software_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/platform_tests/test_software_launcher.py -------------------------------------------------------------------------------- /tests/platform_tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/platform_tests/test_validation.py -------------------------------------------------------------------------------- /tests/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/README.md -------------------------------------------------------------------------------- /tests/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/requirements.txt -------------------------------------------------------------------------------- /tests/python/sgtk_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/sgtk_integration_test.py -------------------------------------------------------------------------------- /tests/python/tank_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/tank_test/__init__.py -------------------------------------------------------------------------------- /tests/python/tank_test/mock_appstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/tank_test/mock_appstore.py -------------------------------------------------------------------------------- /tests/python/tank_test/tank_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/tank_test/tank_test_base.py -------------------------------------------------------------------------------- /tests/python/upgrade_third_party.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/python/upgrade_third_party.sh -------------------------------------------------------------------------------- /tests/run_tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/run_tests.bat -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/run_tests.sh -------------------------------------------------------------------------------- /tests/tank_test_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tank_test_tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/tank_test_tests/test_decorators.py -------------------------------------------------------------------------------- /tests/tank_test_tests/test_mockstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/tank_test_tests/test_mockstore.py -------------------------------------------------------------------------------- /tests/util_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/__init__.py -------------------------------------------------------------------------------- /tests/util_tests/test_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_filesystem.py -------------------------------------------------------------------------------- /tests/util_tests/test_json_and_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_json_and_pickle.py -------------------------------------------------------------------------------- /tests/util_tests/test_load_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_load_publish.py -------------------------------------------------------------------------------- /tests/util_tests/test_local_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_local_path.py -------------------------------------------------------------------------------- /tests/util_tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_login.py -------------------------------------------------------------------------------- /tests/util_tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_metrics.py -------------------------------------------------------------------------------- /tests/util_tests/test_metrics_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_metrics_cache.py -------------------------------------------------------------------------------- /tests/util_tests/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_process.py -------------------------------------------------------------------------------- /tests/util_tests/test_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_publish.py -------------------------------------------------------------------------------- /tests/util_tests/test_pyside6_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_pyside6_patcher.py -------------------------------------------------------------------------------- /tests/util_tests/test_qt_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_qt_importer.py -------------------------------------------------------------------------------- /tests/util_tests/test_sgre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_sgre.py -------------------------------------------------------------------------------- /tests/util_tests/test_shotgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_shotgun.py -------------------------------------------------------------------------------- /tests/util_tests/test_shotgun_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_shotgun_connect.py -------------------------------------------------------------------------------- /tests/util_tests/test_shotgun_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_shotgun_entity.py -------------------------------------------------------------------------------- /tests/util_tests/test_shotgun_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_shotgun_path.py -------------------------------------------------------------------------------- /tests/util_tests/test_shotgun_publish_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_shotgun_publish_creation.py -------------------------------------------------------------------------------- /tests/util_tests/test_storage_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_storage_roots.py -------------------------------------------------------------------------------- /tests/util_tests/test_system_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_system_settings.py -------------------------------------------------------------------------------- /tests/util_tests/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_unicode.py -------------------------------------------------------------------------------- /tests/util_tests/test_user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_user_settings.py -------------------------------------------------------------------------------- /tests/util_tests/test_version_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_version_compare.py -------------------------------------------------------------------------------- /tests/util_tests/test_version_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_version_import.py -------------------------------------------------------------------------------- /tests/util_tests/test_yaml_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_yaml_cache.py -------------------------------------------------------------------------------- /tests/util_tests/test_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shotgunsoftware/tk-core/HEAD/tests/util_tests/test_zip.py --------------------------------------------------------------------------------