Exemple #1
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        self.btctxstore = BtcTxStore()

        db.create_all()
Exemple #2
0
 def setUp(self):
     db.create_all()
Exemple #3
0
 def setUp(self):
     app.config["SKIP_AUTHENTICATION"] = False  # monkey patch
     db.create_all()
Exemple #4
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        db.create_all()
Exemple #5
0
 def setUp(self):
     app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
     db.create_all()
Exemple #6
0
 def setUp(self):
     db.create_all()
 def start_test_server():
     db.create_all()  # create schema
     app.run(host=host, port=int(port), debug=True)  # start server
Exemple #8
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        db.create_all()