예제 #1
0
 def create_app(self):
     app = super(CsvTest, self).create_app()
     init_metrics(app)
     app.register_blueprint(blueprint)
     return app
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     init_metrics(app)
     return app
예제 #3
0
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     init_metrics(app)
     return app
예제 #4
0
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     app.config['USE_METRICS'] = True
     init_metrics(app)
     return app
예제 #5
0
파일: test_csv.py 프로젝트: odtvince/udata
 def create_app(self):
     app = super(CsvTest, self).create_app()
     init_metrics(app)
     app.register_blueprint(blueprint)
     return app
예제 #6
0
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     app.config['USE_METRICS'] = True
     init_metrics(app)
     return app