From aa145357f31007e01480d9fbc23f52856dd98381 Mon Sep 17 00:00:00 2001 From: Aleksei Chetaev Date: Mon, 27 Feb 2023 18:34:50 +0100 Subject: [PATCH] Fixing path to DevEnv Signed-off-by: Aleksei Chetaev --- pytest_tests/resources/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_tests/resources/common.py b/pytest_tests/resources/common.py index 596d31f..1f81786 100644 --- a/pytest_tests/resources/common.py +++ b/pytest_tests/resources/common.py @@ -22,7 +22,7 @@ GAS_HASH = os.getenv("GAS_HASH", "0xd2a4cff31913016155e38e474a2c06d08be276cf") FROSTFS_CONTRACT = os.getenv("FROSTFS_IR_CONTRACTS_FROSTFS") ASSETS_DIR = os.getenv("ASSETS_DIR", "TemporaryDir") -DEVENV_PATH = os.getenv("DEVENV_PATH", os.path.join("../../pytest_tests", "frostfs-dev-env")) +DEVENV_PATH = os.getenv("DEVENV_PATH", os.path.join("..", "frostfs-dev-env")) # Password of wallet owned by user on behalf of whom we are running tests WALLET_PASS = os.getenv("WALLET_PASS", "")