17 lines
456 B
Python
17 lines
456 B
Python
import logging
|
|
|
|
import connexion
|
|
from flask_testing import TestCase
|
|
|
|
from openapi_server.encoder import JSONEncoder
|
|
|
|
|
|
class BaseTestCase(TestCase):
|
|
|
|
def create_app(self):
|
|
logging.getLogger('connexion.operation').setLevel('ERROR')
|
|
app = connexion.App(__name__ , specification_dir='../openapi/')
|
|
app.app.json_encoder = JSONEncoder
|
|
app.add_api('openapi.yaml', pythonic_params=True, base_path='/api')
|
|
return app.app
|