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 8, 2023
1 parent c7c005c commit 3bc4144
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions robot/variables/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
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_STORAGE_CONFIG_FILE = os.getenv("DOCKER_COMPOSE_STORAGE_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", "")
Expand Down

0 comments on commit 3bc4144

Please sign in to comment.