コード例 #1
0
 def create_app(self):
     app = super(CsvTest, self).create_app()
     init_metrics(app)
     app.register_blueprint(blueprint)
     return app
コード例 #2
0
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     init_metrics(app)
     return app
コード例 #3
0
ファイル: test_metrics_api.py プロジェクト: rossjones/udata
 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
ファイル: test_metrics_api.py プロジェクト: odtvince/udata
 def create_app(self):
     app = super(MetricsAPITest, self).create_app()
     app.config['USE_METRICS'] = True
     init_metrics(app)
     return app