fixed some bugs, improved the backtesting and strategy table. Possible now to specify which features we want to use in the backtesting api
This commit is contained in:
@@ -628,13 +628,15 @@ def lambda_context():
|
||||
lamb.start()
|
||||
|
||||
session = boto3.session.Session()
|
||||
|
||||
client = session.client('sns')
|
||||
dynamodb = boto3.resource('dynamodb')
|
||||
os.environ["strategyTable"] = "StrategyTable"
|
||||
os.environ["tradeTable"] = "TradeTable"
|
||||
os.environ["topic"] = "UnitTestTopic"
|
||||
|
||||
client = session.client('sns')
|
||||
client.create_topic(Name=os.environ["topic"])
|
||||
|
||||
dynamodb = boto3.resource('dynamodb')
|
||||
|
||||
import responses
|
||||
|
||||
# do not mock requests to these urls
|
||||
|
||||
Reference in New Issue
Block a user