Skip to content

Commit

Permalink
Add DOCKER_COMPOSE_ENV_FILE and DOCKER_COMPOSE_CONFIG_FILE
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Kulachenko <[email protected]>
  • Loading branch information
vvarg229 committed Sep 7, 2023
1 parent 9845d70 commit 930dac1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion robot/variables/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 930dac1

Please sign in to comment.