summaryrefslogtreecommitdiffstats
path: root/docs/release/overview.rst
AgeCommit message (Expand)AuthorFilesLines
2017-05-04Corrected spelling mistakeSofia1-1/+1
2017-05-04Misc ChangesShubhamRathi1-3/+3
2017-03-31Update docsShubhamRathi1-1/+1
2017-03-31Update overview doc image nameShubhamRathi1-1/+1
2017-03-30Add labels to composite docsShubhamRathi1-0/+2
2017-03-30Updated linksSofia Wallin1-3/+3
2017-03-30Updated linksSofia Wallin1-2/+2
2017-03-29Updating composite docs with links, information and versions.ChristopherPrice1-12/+12
2017-03-29Updated VSPERF description and fixed Wiki links to projectTrevor Cooper1-2/+4
2017-03-20Updated license header with SPDXSofia Wallinrt create_engine from sqlalchemy.orm import scoped_session, sessionmaker from sqlalchemy.ext.declarative import declarative_base from yardstick.common import constants as consts logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) engine = create_engine(consts.SQLITE, convert_unicode=True) db_session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine)) Base = declarative_base() Base.query = db_session.query_property()