def __init__()

in pytest_rally/rally.py [0:0]


    def __init__(self,
                 track_repository=None,
                 track_revision=None,
                 config_dir=RALLY_CONFIG_DIR,
                 config_name=CONFIG_NAME,
                 debug=False):
        self.revision = None
        self.track_repository= track_repository
        self.track_revision = track_revision
        self.config_dir = config_dir
        self.config_name = config_name
        self.config_template = os.path.join(os.path.dirname(__file__), "resources", f"{config_name}.ini")
        self.config_location = os.path.join(config_dir, f"rally-{config_name}.ini")
        self.debug = debug
        self.logger = logging.getLogger(__name__)