This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Setup(object): | |
ACCOUNT_ID = None | |
USER_SESSION = None | |
LOCATION_IDS = None | |
REVIEW_IDS = None | |
def __init__(self): | |
self.ACCOUNT_ID = environ.get('ACCOUNT_ID') | |
self.USER_SESSION = self.create_user_session() | |
self.LOCATION_IDS = self.get_location_ids_from_db() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from invoke import task | |
import logging | |
from os import environ, mkdir, path | |
# Default options | |
environ['ENV'] = environ.get('ENV', 'QA') | |
environ['ACCOUNT_ID'] = environ.get('ACCOUNT_ID', 'abc') | |
environ['RUNTIME'] = environ.get('RUNTIME', '5m') | |
environ['NUM_USERS'] = environ.get('NUM_USERS', '200') | |
environ['HATCH_RATE'] = environ.get('HATCH_RATE', '5') |