From 7e5f9f27d133f75ce8933b11fdde534ad5fc73bf Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 13 Feb 2025 17:00:43 +0100 Subject: [PATCH] added separators --- tests/client/ayon_core/lib/test_env_tools.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/client/ayon_core/lib/test_env_tools.py b/tests/client/ayon_core/lib/test_env_tools.py index 5bc63a6158..7c9ff26d6f 100644 --- a/tests/client/ayon_core/lib/test_env_tools.py +++ b/tests/client/ayon_core/lib/test_env_tools.py @@ -8,6 +8,7 @@ from ayon_core.lib.env_tools import ( compute_env_variables_structure, ) +# --- Test data --- COMPUTE_SRC_ENV = { "COMPUTE_VERSION": "1.0.0", # Will be available only for darwin @@ -31,6 +32,8 @@ COMPUTE_SRC_ENV = { }, } +# --- RESULTS --- +# --- Parse results --- PARSE_RESULT_WINDOWS = { "COMPUTE_VERSION": "1.0.0", "COMPUTE_LOCATION": "C:/Program Files/compute-app-{COMPUTE_VERSION}", @@ -53,6 +56,7 @@ PARSE_RESULT_DARWIN = { "PATH_STR": "{COMPUTE_LOCATION}/bin:{COMPUTE_LOCATION}/bin2", } +# --- Compute results --- COMPUTE_RESULT_WINDOWS = { "COMPUTE_VERSION": "1.0.0", "COMPUTE_LOCATION": "C:/Program Files/compute-app-1.0.0",