QuasarAppCI/BuildBotLib/buildBotDB.py
2020-06-19 11:09:23 +03:00

17 lines
520 B
Python

# This Python file uses the following encoding: utf-8
from BuildBotLib.buildBotModule import BuildBotModule
class BuildBotDB(BuildBotModule):
def __init__(self, masterConf):
BuildBotModule.__init__(self, masterConf)
# DB URL
self.masterConf['db'] = {
# This specifies what database
# buildbot uses to store its state. You can leave
# this at its default for all but the largest installations.
'db_url': "sqlite:///state.sqlite",
}