Test config cleanup
This commit is contained in:
parent
546256c86a
commit
66e23e4e20
@ -8,15 +8,14 @@ import confini
|
|||||||
|
|
||||||
script_dir = os.path.dirname(os.path.realpath(__file__))
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
root_dir = os.path.dirname(os.path.dirname(script_dir))
|
root_dir = os.path.dirname(os.path.dirname(script_dir))
|
||||||
|
config_dir = os.path.join(root_dir, 'cic_eth', 'data', 'config')
|
||||||
logg = logging.getLogger(__name__)
|
logg = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope='session')
|
@pytest.fixture(scope='session')
|
||||||
def load_config():
|
def load_config():
|
||||||
config_dir = os.environ.get('CONFINI_DIR')
|
override_config_dir = os.path.join(root_dir, 'config', 'test')
|
||||||
if config_dir == None:
|
conf = confini.Config(config_dir, 'CICTEST', override_dirs=[override_config_dir])
|
||||||
config_dir = os.path.join(root_dir, 'config/test')
|
|
||||||
conf = confini.Config(config_dir, 'CICTEST')
|
|
||||||
conf.process()
|
conf.process()
|
||||||
logg.debug('config {}'.format(conf))
|
logg.debug('config {}'.format(conf))
|
||||||
return conf
|
return conf
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[accounts]
|
|
||||||
writer_address =
|
|
@ -1,2 +0,0 @@
|
|||||||
[bancor]
|
|
||||||
dir = tests/testdata/bancor
|
|
@ -1,5 +1,3 @@
|
|||||||
[celery]
|
[celery]
|
||||||
broker_url = filesystem://
|
broker_url = filesystem://
|
||||||
result_url = filesystem://
|
result_url = filesystem://
|
||||||
#broker_url = redis://
|
|
||||||
#result_url = redis://
|
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[chain]
|
|
||||||
spec =
|
|
@ -1,4 +0,0 @@
|
|||||||
[cic]
|
|
||||||
registry_address =
|
|
||||||
chain_spec =
|
|
||||||
trust_address =
|
|
@ -1,2 +0,0 @@
|
|||||||
[dispatcher]
|
|
||||||
loop_interval = 0.1
|
|
@ -1,8 +0,0 @@
|
|||||||
[eth]
|
|
||||||
#ws_provider = ws://localhost:8546
|
|
||||||
#ttp_provider = http://localhost:8545
|
|
||||||
provider = http://localhost:8545
|
|
||||||
gas_provider_address =
|
|
||||||
#chain_id =
|
|
||||||
abi_dir =
|
|
||||||
faucet_giver_address =
|
|
@ -1,5 +1,2 @@
|
|||||||
[signer]
|
[signer]
|
||||||
socket_path = /run/crypto-dev-signer/jsonrpc.ipc
|
provider = /run/crypto-dev-signer/jsonrpc.ipc
|
||||||
secret = deedbeef
|
|
||||||
database_name = signer_test
|
|
||||||
dev_keys_path =
|
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
[SSL]
|
|
||||||
enable_client = false
|
|
||||||
cert_file =
|
|
||||||
key_file =
|
|
||||||
password =
|
|
||||||
ca_file =
|
|
@ -1,2 +0,0 @@
|
|||||||
[SYNCER]
|
|
||||||
loop_interval = 1
|
|
Loading…
Reference in New Issue
Block a user