2020-04-30 13:14:32 +00:00
|
|
|
#!/usr/bin/python3
|
2020-07-01 02:28:31 +00:00
|
|
|
import os
|
2020-04-30 13:14:32 +00:00
|
|
|
|
|
|
|
ROOT='../..'
|
|
|
|
|
|
|
|
RESOURCES="%s/resources/lib" % ROOT
|
2020-07-01 02:28:31 +00:00
|
|
|
CERT="%s/../../ca" % ROOT
|
2020-05-20 12:26:13 +00:00
|
|
|
# path from repo root is required for object put and get
|
|
|
|
# in case when test is run from root in docker
|
|
|
|
ABSOLUTE_FILE_PATH="/robot/testsuites/integration"
|
2020-07-01 02:28:31 +00:00
|
|
|
|
|
|
|
JF_TOKEN = os.getenv('JF_TOKEN')
|
|
|
|
REG_USR = os.getenv('REG_USR')
|
|
|
|
REG_PWD = os.getenv('REG_PWD')
|
|
|
|
NEOFS_ENDPOINT = "s01.fs.localtest.nspcc.ru:8080"
|
2020-09-01 03:23:17 +00:00
|
|
|
NEOFS_NEO_API_ENDPOINT = "https://fs.localtest.nspcc.ru/neo_rpc/"
|
|
|
|
|
|
|
|
MORPH_BLOCK_TIMEOUT = "10sec"
|
|
|
|
NEOFS_EPOCH_TIMEOUT = "30sec"
|