21 lines
577 B
Python
21 lines
577 B
Python
"""Secret loading for tests.
|
|
|
|
Add these secrets to an [appropriate secret loader
|
|
location](https://gitfub.space/Jmaa/secret_loader). Missing some secrets will
|
|
result in skipped tests.
|
|
"""
|
|
|
|
from secret_loader import SecretLoader
|
|
|
|
load_secret = SecretLoader().load
|
|
|
|
NORDNET_USERNAME = load_secret('NORDNET_USERNAME')
|
|
NORDNET_PASSWORD = load_secret('NORDNET_PASSWORD')
|
|
|
|
KRAKEN_KEY = load_secret('KRAKEN_KEY')
|
|
KRAKEN_SECRET = load_secret('KRAKEN_SECRET')
|
|
|
|
KUCOIN_KEY = load_secret('KUCOIN_KEY')
|
|
KUCOIN_SECRET = load_secret('KUCOIN_SECRET')
|
|
KUCOIN_PASS = load_secret('KUCOIN_PASS')
|