├── .coveragerc ├── .github └── workflows │ ├── python-release.yml │ └── python-static-analysis-and-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── .hab-complete.bash ├── hab ├── hab.bat └── hab.ps1 ├── hab ├── __init__.py ├── __main__.py ├── cache.py ├── cli.py ├── distro_finders │ ├── __init__.py │ ├── cloud_zip.py │ ├── df_zip.py │ ├── distro_finder.py │ ├── s3_zip.py │ └── zip_sidecar.py ├── entry_points.py ├── errors.py ├── formatter.py ├── launcher.py ├── merge_dict.py ├── parsers │ ├── __init__.py │ ├── config.py │ ├── distro.py │ ├── distro_version.py │ ├── flat_config.py │ ├── format_parser.py │ ├── hab_base.py │ ├── lazy_distro_version.py │ ├── meta.py │ ├── placeholder.py │ ├── stub_distro_version.py │ └── unfrozen_config.py ├── resolver.py ├── site.py ├── solvers.py ├── templates │ ├── alias.bat │ ├── config.bat │ ├── config.ps1 │ └── config.sh ├── user_prefs.py └── utils.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── tests ├── configs │ ├── app │ │ ├── app_aliased.json │ │ ├── app_aliased_config.json │ │ ├── app_aliased_mod.json │ │ ├── app_aliased_mod_config.json │ │ ├── app_houdini_a.json │ │ ├── app_houdini_b.json │ │ ├── app_maya.json │ │ ├── app_maya_2020.json │ │ └── app_maya_2024.json │ ├── default │ │ ├── default.json │ │ ├── default_Sc1.json │ │ └── default_Sc11.json │ ├── not_set │ │ ├── child.json │ │ ├── env.json │ │ ├── env_path_hab_uri.json │ │ ├── env_path_set.json │ │ ├── env_path_unset.json │ │ ├── not_set.json │ │ ├── not_set_distros.json │ │ ├── not_set_empty_lists.json │ │ ├── not_set_no_distros.json │ │ ├── not_set_no_env.json │ │ └── os_env.json │ ├── optional │ │ ├── optional.json │ │ └── optional_child.json │ ├── place-holder │ │ ├── place-holder_child.json │ │ └── place-holder_inherits.json │ ├── project_a │ │ ├── project_a.json │ │ ├── project_a_Sc001.json │ │ ├── project_a_Sc001_animation.json │ │ └── project_a_Sc001_rigging.json │ ├── stub │ │ ├── stub.json │ │ ├── stub_omittable.json │ │ └── stub_override.json │ └── verbosity │ │ ├── verbosity.json │ │ ├── verbosity_hidden.json │ │ ├── verbosity_inherit-no.json │ │ ├── verbosity_inherit-override.json │ │ └── verbosity_inherit.json ├── conftest.py ├── distros │ ├── aliased │ │ └── 2.0 │ │ │ ├── .hab.json │ │ │ ├── README.md │ │ │ └── list_vars.py │ ├── aliased_mod │ │ └── 1.0 │ │ │ └── .hab.json │ ├── aliased_verbosity │ │ └── 1.0 │ │ │ └── .hab.json │ ├── all_settings │ │ └── 0.1.0.dev1 │ │ │ ├── .hab.json │ │ │ └── invalid.hab.json │ ├── houdini18.5 │ │ └── 18.5.351 │ │ │ └── .hab.json │ ├── houdini19.5 │ │ └── 19.5.493 │ │ │ └── .hab.json │ ├── maya2020 │ │ ├── 2020.0 │ │ │ └── .hab.json │ │ └── 2020.1 │ │ │ └── .hab.json │ ├── maya2024 │ │ └── 2024.0 │ │ │ └── .hab.json │ ├── pre-release │ │ ├── 1.0.dev1 │ │ │ └── .hab.json │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1.dev2 │ │ │ └── .hab.json │ ├── pre-release2 │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1.dev2 │ │ │ └── .hab.json │ ├── the_dcc │ │ ├── 1.0 │ │ │ └── .hab.json │ │ ├── 1.1 │ │ │ └── .hab.json │ │ ├── 1.2 │ │ │ └── .hab.json │ │ └── pre │ │ │ ├── .hab.json │ │ │ └── README.md │ ├── the_dcc_plugin_a │ │ ├── 0.9 │ │ │ └── .hab.json │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1 │ │ │ └── .hab.json │ ├── the_dcc_plugin_b │ │ ├── 0.9 │ │ │ └── .hab.json │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1 │ │ │ └── .hab.json │ ├── the_dcc_plugin_c │ │ ├── 0.9 │ │ │ └── .hab.json │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1 │ │ │ └── .hab.json │ ├── the_dcc_plugin_d │ │ ├── 0.9 │ │ │ └── .hab.json │ │ ├── 1.0 │ │ │ └── .hab.json │ │ └── 1.1 │ │ │ └── .hab.json │ └── the_dcc_plugin_e │ │ ├── 0.9 │ │ └── .hab.json │ │ ├── 1.0 │ │ └── .hab.json │ │ └── 1.1 │ │ └── .hab.json ├── distros_version │ ├── not_scm │ │ └── .hab.json │ ├── release │ │ └── .hab.json │ └── txt_file │ │ ├── .hab.json │ │ └── .hab_version.txt ├── duplicates │ ├── configs_child_1 │ │ └── child.json │ ├── configs_child_2 │ │ ├── child.json │ │ └── child1.json │ ├── configs_parent_1 │ │ └── not_set.json │ ├── configs_parent_2 │ │ ├── not_set.json │ │ └── not_set1.json │ ├── distros_1 │ │ └── the_dcc │ │ │ └── 1.2 │ │ │ └── .hab.json │ └── distros_2 │ │ ├── the_dcc │ │ └── 1.2 │ │ │ └── .hab.json │ │ └── the_dcc_1 │ │ └── 1.2 │ │ └── .hab.json ├── frozen.json ├── frozen_no_distros.json ├── hab_test_entry_points.py ├── invalid.json ├── manual │ ├── README.md │ ├── test_env.sh │ └── test_launch.sh ├── merge_dict │ ├── merge_agnostic.json │ ├── merge_specific.json │ ├── os_agnostic.json │ ├── os_agnostic_platforms.json │ ├── os_specific.json │ ├── os_specific_false.json │ ├── os_specific_platforms.json │ └── test_merge_dict.py ├── reference_scripts │ ├── bat_activate │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ └── spec.json │ ├── bat_activate_launch │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ └── spec.json │ ├── bat_env │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ ├── hab_launch.bat │ │ └── spec.json │ ├── bat_env_launch │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ ├── hab_launch.bat │ │ └── spec.json │ ├── bat_launch │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ ├── hab_launch.bat │ │ └── spec.json │ ├── bat_launch_args │ │ ├── aliases │ │ │ ├── as_dict.bat │ │ │ ├── as_list.bat │ │ │ ├── as_str.bat │ │ │ ├── global.bat │ │ │ ├── inherited.bat │ │ │ ├── maya.bat │ │ │ ├── maya20.bat │ │ │ ├── mayapy.bat │ │ │ ├── mayapy20.bat │ │ │ └── pip.bat │ │ ├── hab_config.bat │ │ ├── hab_launch.bat │ │ └── spec.json │ ├── ps1_activate │ │ ├── hab_config.ps1 │ │ └── spec.json │ ├── ps1_activate_launch │ │ ├── hab_config.ps1 │ │ └── spec.json │ ├── ps1_env │ │ ├── hab_config.ps1 │ │ ├── hab_launch.ps1 │ │ └── spec.json │ ├── ps1_env_launch │ │ ├── hab_config.ps1 │ │ ├── hab_launch.ps1 │ │ └── spec.json │ ├── ps1_launch │ │ ├── hab_config.ps1 │ │ ├── hab_launch.ps1 │ │ └── spec.json │ ├── ps1_launch_args │ │ ├── hab_config.ps1 │ │ ├── hab_launch.ps1 │ │ └── spec.json │ ├── sh_linux_activate │ │ ├── hab_config.sh │ │ └── spec.json │ ├── sh_linux_activate_launch │ │ ├── hab_config.sh │ │ └── spec.json │ ├── sh_linux_env │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_linux_env_launch │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_linux_launch │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_linux_launch_args │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_win_activate │ │ ├── hab_config.sh │ │ └── spec.json │ ├── sh_win_activate_launch │ │ ├── hab_config.sh │ │ └── spec.json │ ├── sh_win_env │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_win_env_launch │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ ├── sh_win_launch │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json │ └── sh_win_launch_args │ │ ├── hab_config.sh │ │ ├── hab_launch.sh │ │ └── spec.json ├── resolver_freeze_configs.json ├── site │ ├── eps │ │ ├── README.md │ │ ├── cfg_reduce_env.json │ │ ├── cfg_reduce_finalize.json │ │ ├── cfg_uri_validate.json │ │ ├── site_add_paths.json │ │ ├── site_add_paths_a.json │ │ ├── site_add_paths_b.json │ │ ├── site_add_paths_c.json │ │ ├── site_finalize.json │ │ └── site_habcache_cls.json │ ├── site_cache_file.json │ ├── site_distro_finder.json │ ├── site_distro_finder_empty.json │ ├── site_entry_point_a.json │ ├── site_entry_point_b.json │ ├── site_entry_point_c.json │ ├── site_ep_uri_validate.json │ ├── site_left.json │ ├── site_middle.json │ ├── site_right.json │ ├── site_stub.json │ └── site_stub_a.json ├── site_env.json ├── site_env_direct.json ├── site_main.json ├── site_main_check.habcache ├── site_os_specific.json ├── site_override.json ├── templates │ ├── site_distro_finder.json │ ├── site_distro_s3.json │ ├── site_distro_zip.json │ ├── site_distro_zip_sidecar.json │ └── site_download.json ├── test_cache.py ├── test_distro_finder.py ├── test_format_parser.py ├── test_formatter.py ├── test_freeze.py ├── test_launch.py ├── test_lazy_distro_version.py ├── test_parsing.py ├── test_resolver.py ├── test_scripts.py ├── test_site.py ├── test_solver.py ├── test_stubs.py └── test_user_prefs.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/python-static-analysis-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/.github/workflows/python-static-analysis-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/README.md -------------------------------------------------------------------------------- /bin/.hab-complete.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/bin/.hab-complete.bash -------------------------------------------------------------------------------- /bin/hab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/bin/hab -------------------------------------------------------------------------------- /bin/hab.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/bin/hab.bat -------------------------------------------------------------------------------- /bin/hab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/bin/hab.ps1 -------------------------------------------------------------------------------- /hab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/__init__.py -------------------------------------------------------------------------------- /hab/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/__main__.py -------------------------------------------------------------------------------- /hab/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/cache.py -------------------------------------------------------------------------------- /hab/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/cli.py -------------------------------------------------------------------------------- /hab/distro_finders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hab/distro_finders/cloud_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/distro_finders/cloud_zip.py -------------------------------------------------------------------------------- /hab/distro_finders/df_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/distro_finders/df_zip.py -------------------------------------------------------------------------------- /hab/distro_finders/distro_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/distro_finders/distro_finder.py -------------------------------------------------------------------------------- /hab/distro_finders/s3_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/distro_finders/s3_zip.py -------------------------------------------------------------------------------- /hab/distro_finders/zip_sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/distro_finders/zip_sidecar.py -------------------------------------------------------------------------------- /hab/entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/entry_points.py -------------------------------------------------------------------------------- /hab/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/errors.py -------------------------------------------------------------------------------- /hab/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/formatter.py -------------------------------------------------------------------------------- /hab/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/launcher.py -------------------------------------------------------------------------------- /hab/merge_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/merge_dict.py -------------------------------------------------------------------------------- /hab/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/__init__.py -------------------------------------------------------------------------------- /hab/parsers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/config.py -------------------------------------------------------------------------------- /hab/parsers/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/distro.py -------------------------------------------------------------------------------- /hab/parsers/distro_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/distro_version.py -------------------------------------------------------------------------------- /hab/parsers/flat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/flat_config.py -------------------------------------------------------------------------------- /hab/parsers/format_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/format_parser.py -------------------------------------------------------------------------------- /hab/parsers/hab_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/hab_base.py -------------------------------------------------------------------------------- /hab/parsers/lazy_distro_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/lazy_distro_version.py -------------------------------------------------------------------------------- /hab/parsers/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/meta.py -------------------------------------------------------------------------------- /hab/parsers/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/placeholder.py -------------------------------------------------------------------------------- /hab/parsers/stub_distro_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/stub_distro_version.py -------------------------------------------------------------------------------- /hab/parsers/unfrozen_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/parsers/unfrozen_config.py -------------------------------------------------------------------------------- /hab/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/resolver.py -------------------------------------------------------------------------------- /hab/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/site.py -------------------------------------------------------------------------------- /hab/solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/solvers.py -------------------------------------------------------------------------------- /hab/templates/alias.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/templates/alias.bat -------------------------------------------------------------------------------- /hab/templates/config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/templates/config.bat -------------------------------------------------------------------------------- /hab/templates/config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/templates/config.ps1 -------------------------------------------------------------------------------- /hab/templates/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/templates/config.sh -------------------------------------------------------------------------------- /hab/user_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/user_prefs.py -------------------------------------------------------------------------------- /hab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/hab/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/configs/app/app_aliased.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_aliased.json -------------------------------------------------------------------------------- /tests/configs/app/app_aliased_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_aliased_config.json -------------------------------------------------------------------------------- /tests/configs/app/app_aliased_mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_aliased_mod.json -------------------------------------------------------------------------------- /tests/configs/app/app_aliased_mod_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_aliased_mod_config.json -------------------------------------------------------------------------------- /tests/configs/app/app_houdini_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_houdini_a.json -------------------------------------------------------------------------------- /tests/configs/app/app_houdini_b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_houdini_b.json -------------------------------------------------------------------------------- /tests/configs/app/app_maya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_maya.json -------------------------------------------------------------------------------- /tests/configs/app/app_maya_2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_maya_2020.json -------------------------------------------------------------------------------- /tests/configs/app/app_maya_2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/app/app_maya_2024.json -------------------------------------------------------------------------------- /tests/configs/default/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/default/default.json -------------------------------------------------------------------------------- /tests/configs/default/default_Sc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/default/default_Sc1.json -------------------------------------------------------------------------------- /tests/configs/default/default_Sc11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/default/default_Sc11.json -------------------------------------------------------------------------------- /tests/configs/not_set/child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/child.json -------------------------------------------------------------------------------- /tests/configs/not_set/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/env.json -------------------------------------------------------------------------------- /tests/configs/not_set/env_path_hab_uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/env_path_hab_uri.json -------------------------------------------------------------------------------- /tests/configs/not_set/env_path_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/env_path_set.json -------------------------------------------------------------------------------- /tests/configs/not_set/env_path_unset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/env_path_unset.json -------------------------------------------------------------------------------- /tests/configs/not_set/not_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/not_set.json -------------------------------------------------------------------------------- /tests/configs/not_set/not_set_distros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/not_set_distros.json -------------------------------------------------------------------------------- /tests/configs/not_set/not_set_empty_lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/not_set_empty_lists.json -------------------------------------------------------------------------------- /tests/configs/not_set/not_set_no_distros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/not_set_no_distros.json -------------------------------------------------------------------------------- /tests/configs/not_set/not_set_no_env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/not_set_no_env.json -------------------------------------------------------------------------------- /tests/configs/not_set/os_env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/not_set/os_env.json -------------------------------------------------------------------------------- /tests/configs/optional/optional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/optional/optional.json -------------------------------------------------------------------------------- /tests/configs/optional/optional_child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/optional/optional_child.json -------------------------------------------------------------------------------- /tests/configs/place-holder/place-holder_child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/place-holder/place-holder_child.json -------------------------------------------------------------------------------- /tests/configs/place-holder/place-holder_inherits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/place-holder/place-holder_inherits.json -------------------------------------------------------------------------------- /tests/configs/project_a/project_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/project_a/project_a.json -------------------------------------------------------------------------------- /tests/configs/project_a/project_a_Sc001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/project_a/project_a_Sc001.json -------------------------------------------------------------------------------- /tests/configs/project_a/project_a_Sc001_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/project_a/project_a_Sc001_animation.json -------------------------------------------------------------------------------- /tests/configs/project_a/project_a_Sc001_rigging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/project_a/project_a_Sc001_rigging.json -------------------------------------------------------------------------------- /tests/configs/stub/stub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/stub/stub.json -------------------------------------------------------------------------------- /tests/configs/stub/stub_omittable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/stub/stub_omittable.json -------------------------------------------------------------------------------- /tests/configs/stub/stub_override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/stub/stub_override.json -------------------------------------------------------------------------------- /tests/configs/verbosity/verbosity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/verbosity/verbosity.json -------------------------------------------------------------------------------- /tests/configs/verbosity/verbosity_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/verbosity/verbosity_hidden.json -------------------------------------------------------------------------------- /tests/configs/verbosity/verbosity_inherit-no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/verbosity/verbosity_inherit-no.json -------------------------------------------------------------------------------- /tests/configs/verbosity/verbosity_inherit-override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/verbosity/verbosity_inherit-override.json -------------------------------------------------------------------------------- /tests/configs/verbosity/verbosity_inherit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/configs/verbosity/verbosity_inherit.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/distros/aliased/2.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/aliased/2.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/aliased/2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/aliased/2.0/README.md -------------------------------------------------------------------------------- /tests/distros/aliased/2.0/list_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/aliased/2.0/list_vars.py -------------------------------------------------------------------------------- /tests/distros/aliased_mod/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/aliased_mod/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/aliased_verbosity/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/aliased_verbosity/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/all_settings/0.1.0.dev1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/all_settings/0.1.0.dev1/.hab.json -------------------------------------------------------------------------------- /tests/distros/all_settings/0.1.0.dev1/invalid.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/all_settings/0.1.0.dev1/invalid.hab.json -------------------------------------------------------------------------------- /tests/distros/houdini18.5/18.5.351/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/houdini18.5/18.5.351/.hab.json -------------------------------------------------------------------------------- /tests/distros/houdini19.5/19.5.493/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/houdini19.5/19.5.493/.hab.json -------------------------------------------------------------------------------- /tests/distros/maya2020/2020.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/maya2020/2020.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/maya2020/2020.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/maya2020/2020.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/maya2024/2024.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/maya2024/2024.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/pre-release/1.0.dev1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/pre-release/1.0.dev1/.hab.json -------------------------------------------------------------------------------- /tests/distros/pre-release/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/pre-release/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/pre-release/1.1.dev2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/pre-release/1.1.dev2/.hab.json -------------------------------------------------------------------------------- /tests/distros/pre-release2/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/pre-release2/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/pre-release2/1.1.dev2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/pre-release2/1.1.dev2/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc/1.2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc/1.2/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc/pre/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc/pre/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc/pre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc/pre/README.md -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_a/0.9/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_a/0.9/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_a/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_a/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_a/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_a/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_b/0.9/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_b/0.9/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_b/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_b/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_b/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_b/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_c/0.9/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_c/0.9/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_c/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_c/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_c/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_c/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_d/0.9/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_d/0.9/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_d/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_d/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_d/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_d/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_e/0.9/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_e/0.9/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_e/1.0/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_e/1.0/.hab.json -------------------------------------------------------------------------------- /tests/distros/the_dcc_plugin_e/1.1/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros/the_dcc_plugin_e/1.1/.hab.json -------------------------------------------------------------------------------- /tests/distros_version/not_scm/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros_version/not_scm/.hab.json -------------------------------------------------------------------------------- /tests/distros_version/release/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros_version/release/.hab.json -------------------------------------------------------------------------------- /tests/distros_version/txt_file/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/distros_version/txt_file/.hab.json -------------------------------------------------------------------------------- /tests/distros_version/txt_file/.hab_version.txt: -------------------------------------------------------------------------------- 1 | 1.7 2 | -------------------------------------------------------------------------------- /tests/duplicates/configs_child_1/child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_child_1/child.json -------------------------------------------------------------------------------- /tests/duplicates/configs_child_2/child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_child_2/child.json -------------------------------------------------------------------------------- /tests/duplicates/configs_child_2/child1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_child_2/child1.json -------------------------------------------------------------------------------- /tests/duplicates/configs_parent_1/not_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_parent_1/not_set.json -------------------------------------------------------------------------------- /tests/duplicates/configs_parent_2/not_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_parent_2/not_set.json -------------------------------------------------------------------------------- /tests/duplicates/configs_parent_2/not_set1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/configs_parent_2/not_set1.json -------------------------------------------------------------------------------- /tests/duplicates/distros_1/the_dcc/1.2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/distros_1/the_dcc/1.2/.hab.json -------------------------------------------------------------------------------- /tests/duplicates/distros_2/the_dcc/1.2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/distros_2/the_dcc/1.2/.hab.json -------------------------------------------------------------------------------- /tests/duplicates/distros_2/the_dcc_1/1.2/.hab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/duplicates/distros_2/the_dcc_1/1.2/.hab.json -------------------------------------------------------------------------------- /tests/frozen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/frozen.json -------------------------------------------------------------------------------- /tests/frozen_no_distros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/frozen_no_distros.json -------------------------------------------------------------------------------- /tests/hab_test_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/hab_test_entry_points.py -------------------------------------------------------------------------------- /tests/invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "ending": "comma 3 | } 4 | -------------------------------------------------------------------------------- /tests/manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/manual/README.md -------------------------------------------------------------------------------- /tests/manual/test_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/manual/test_env.sh -------------------------------------------------------------------------------- /tests/manual/test_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/manual/test_launch.sh -------------------------------------------------------------------------------- /tests/merge_dict/merge_agnostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/merge_agnostic.json -------------------------------------------------------------------------------- /tests/merge_dict/merge_specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/merge_specific.json -------------------------------------------------------------------------------- /tests/merge_dict/os_agnostic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/os_agnostic.json -------------------------------------------------------------------------------- /tests/merge_dict/os_agnostic_platforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/os_agnostic_platforms.json -------------------------------------------------------------------------------- /tests/merge_dict/os_specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/os_specific.json -------------------------------------------------------------------------------- /tests/merge_dict/os_specific_false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/os_specific_false.json -------------------------------------------------------------------------------- /tests/merge_dict/os_specific_platforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/os_specific_platforms.json -------------------------------------------------------------------------------- /tests/merge_dict/test_merge_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/merge_dict/test_merge_dict.py -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_activate_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_activate_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/hab_launch.bat: -------------------------------------------------------------------------------- 1 | cmd.exe /k "{{ tmpdir / "hab_config.bat" }}" 2 | -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/hab_launch.bat: -------------------------------------------------------------------------------- 1 | cmd.exe /k "{{ tmpdir / "hab_config.bat" }}" 2 | -------------------------------------------------------------------------------- /tests/reference_scripts/bat_env_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_env_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/hab_launch.bat: -------------------------------------------------------------------------------- 1 | cmd.exe /k "{{ tmpdir / "hab_config.bat" }}" 2 | -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/as_dict.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/as_dict.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/as_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/as_list.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/as_str.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/as_str.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/global.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/global.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/inherited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/inherited.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/maya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/maya.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/maya20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/maya20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/mayapy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/mayapy.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/mayapy20.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/mayapy20.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/aliases/pip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/aliases/pip.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/hab_config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/hab_config.bat -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/hab_launch.bat: -------------------------------------------------------------------------------- 1 | cmd.exe /k "{{ tmpdir / "hab_config.bat" }}" 2 | -------------------------------------------------------------------------------- /tests/reference_scripts/bat_launch_args/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/bat_launch_args/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_activate/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_activate/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_activate/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_activate/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_activate_launch/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_activate_launch/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_activate_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_activate_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_env/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env/hab_launch.ps1: -------------------------------------------------------------------------------- 1 | powershell.exe -NoExit -ExecutionPolicy Unrestricted -File "{{ tmpdir / "hab_config.ps1" }}" 2 | exit $LASTEXITCODE 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_env/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env_launch/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_env_launch/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env_launch/hab_launch.ps1: -------------------------------------------------------------------------------- 1 | powershell.exe -NoExit -ExecutionPolicy Unrestricted -File "{{ tmpdir / "hab_config.ps1" }}" 2 | exit $LASTEXITCODE 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_env_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_env_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_launch/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch/hab_launch.ps1: -------------------------------------------------------------------------------- 1 | powershell.exe -ExecutionPolicy Unrestricted -File "{{ tmpdir / "hab_config.ps1" }}" 2 | exit $LASTEXITCODE 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch_args/hab_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_launch_args/hab_config.ps1 -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch_args/hab_launch.ps1: -------------------------------------------------------------------------------- 1 | powershell.exe -ExecutionPolicy Unrestricted -File "{{ tmpdir / "hab_config.ps1" }}" 2 | exit $LASTEXITCODE 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/ps1_launch_args/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/ps1_launch_args/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_activate/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_activate/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_activate/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_activate/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_activate_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_activate_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_activate_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_activate_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_env/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_env/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_env_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env_launch/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_env_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_env_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch_args/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_launch_args/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch_args/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_linux_launch_args/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_linux_launch_args/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_activate/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_activate/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_activate/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_activate/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_activate_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_activate_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_activate_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_activate_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_env/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_env/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_env_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env_launch/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_env_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_env_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_launch/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_launch/spec.json -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch_args/hab_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_launch_args/hab_config.sh -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch_args/hab_launch.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | bash --init-file "{{ tmpdir / "hab_config.sh" }}" 3 | -------------------------------------------------------------------------------- /tests/reference_scripts/sh_win_launch_args/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/reference_scripts/sh_win_launch_args/spec.json -------------------------------------------------------------------------------- /tests/resolver_freeze_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/resolver_freeze_configs.json -------------------------------------------------------------------------------- /tests/site/eps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/README.md -------------------------------------------------------------------------------- /tests/site/eps/cfg_reduce_env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/cfg_reduce_env.json -------------------------------------------------------------------------------- /tests/site/eps/cfg_reduce_finalize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/cfg_reduce_finalize.json -------------------------------------------------------------------------------- /tests/site/eps/cfg_uri_validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/cfg_uri_validate.json -------------------------------------------------------------------------------- /tests/site/eps/site_add_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_add_paths.json -------------------------------------------------------------------------------- /tests/site/eps/site_add_paths_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_add_paths_a.json -------------------------------------------------------------------------------- /tests/site/eps/site_add_paths_b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_add_paths_b.json -------------------------------------------------------------------------------- /tests/site/eps/site_add_paths_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_add_paths_c.json -------------------------------------------------------------------------------- /tests/site/eps/site_finalize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_finalize.json -------------------------------------------------------------------------------- /tests/site/eps/site_habcache_cls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/eps/site_habcache_cls.json -------------------------------------------------------------------------------- /tests/site/site_cache_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_cache_file.json -------------------------------------------------------------------------------- /tests/site/site_distro_finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_distro_finder.json -------------------------------------------------------------------------------- /tests/site/site_distro_finder_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_distro_finder_empty.json -------------------------------------------------------------------------------- /tests/site/site_entry_point_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_entry_point_a.json -------------------------------------------------------------------------------- /tests/site/site_entry_point_b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_entry_point_b.json -------------------------------------------------------------------------------- /tests/site/site_entry_point_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_entry_point_c.json -------------------------------------------------------------------------------- /tests/site/site_ep_uri_validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_ep_uri_validate.json -------------------------------------------------------------------------------- /tests/site/site_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_left.json -------------------------------------------------------------------------------- /tests/site/site_middle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_middle.json -------------------------------------------------------------------------------- /tests/site/site_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_right.json -------------------------------------------------------------------------------- /tests/site/site_stub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_stub.json -------------------------------------------------------------------------------- /tests/site/site_stub_a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site/site_stub_a.json -------------------------------------------------------------------------------- /tests/site_env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_env.json -------------------------------------------------------------------------------- /tests/site_env_direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_env_direct.json -------------------------------------------------------------------------------- /tests/site_main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_main.json -------------------------------------------------------------------------------- /tests/site_main_check.habcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_main_check.habcache -------------------------------------------------------------------------------- /tests/site_os_specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_os_specific.json -------------------------------------------------------------------------------- /tests/site_override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/site_override.json -------------------------------------------------------------------------------- /tests/templates/site_distro_finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/templates/site_distro_finder.json -------------------------------------------------------------------------------- /tests/templates/site_distro_s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/templates/site_distro_s3.json -------------------------------------------------------------------------------- /tests/templates/site_distro_zip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/templates/site_distro_zip.json -------------------------------------------------------------------------------- /tests/templates/site_distro_zip_sidecar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/templates/site_distro_zip_sidecar.json -------------------------------------------------------------------------------- /tests/templates/site_download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/templates/site_download.json -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_distro_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_distro_finder.py -------------------------------------------------------------------------------- /tests/test_format_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_format_parser.py -------------------------------------------------------------------------------- /tests/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_formatter.py -------------------------------------------------------------------------------- /tests/test_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_freeze.py -------------------------------------------------------------------------------- /tests/test_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_launch.py -------------------------------------------------------------------------------- /tests/test_lazy_distro_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_lazy_distro_version.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_resolver.py -------------------------------------------------------------------------------- /tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_scripts.py -------------------------------------------------------------------------------- /tests/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_site.py -------------------------------------------------------------------------------- /tests/test_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_solver.py -------------------------------------------------------------------------------- /tests/test_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_stubs.py -------------------------------------------------------------------------------- /tests/test_user_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tests/test_user_prefs.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurstudio/hab/HEAD/tox.ini --------------------------------------------------------------------------------