diff --git a/robot/variables/common.py b/robot/variables/common.py index 8a69a2275..8409465bf 100644 --- a/robot/variables/common.py +++ b/robot/variables/common.py @@ -25,11 +25,14 @@ TEST_FILES_DIR = os.getenv("TEST_FILES_DIR", "TestFilesDir") TEST_OBJECTS_DIR = os.getenv("TEST_OBJECTS_DIR", "TestObjectsDir") DEVENV_PATH = os.getenv("DEVENV_PATH", os.path.join("..", "neofs-dev-env")) +DOCKER_COMPOSE_CONFIG_FILE = os.getenv("DOCKER_COMPOSE_CONFIG_FILE", os.path.join(DEVENV_PATH, "services", "storage", + "docker-compose.yml")) +DOCKER_COMPOSE_ENV_FILE = os.getenv("DOCKER_COMPOSE_ENV_FILE", os.path.join(DEVENV_PATH, "services", "storage", + ".int_test.env")) # Password of wallet owned by user on behalf of whom we are running tests WALLET_PASS = os.getenv("WALLET_PASS", "") - # Paths to CLI executables on machine that runs tests NEOGO_EXECUTABLE = os.getenv("NEOGO_EXECUTABLE", "neo-go") NEOFS_CLI_EXEC = os.getenv("NEOFS_CLI_EXEC", "neofs-cli")