frostfs-testcases/robot/variables/common.py

15 lines
432 B
Python
Raw Normal View History

2020-04-30 13:14:32 +00:00
#!/usr/bin/python3
import os
2020-04-30 13:14:32 +00:00
ROOT='../..'
RESOURCES="%s/resources/lib" % ROOT
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"
# Price of the contract Deposit execution: 0.1493182 GAS
NEOFS_CONTRACT_DEPOSIT_GAS_FEE = 0.1493182
2021-03-29 10:18:24 +00:00
NEOFS_CONTRACT_WITHDRAW_GAS_FEE = 0.0331791
TEMP_DIR = "TemporaryDir/"