WIP: Add tests for http functions
This commit is contained in:
2
app.py
2
app.py
@@ -20,6 +20,7 @@ from routes.auth import auth
|
||||
from routes.settings import settings
|
||||
from routes.community import community
|
||||
from routes.shared_env import shared_env
|
||||
from routes.tests import tests_bp
|
||||
from constants import DEFAULT_FUNCTION_NAME, DEFAULT_SCRIPT, DEFAULT_ENVIRONMENT
|
||||
from flask_apscheduler import APScheduler
|
||||
import asyncio
|
||||
@@ -50,6 +51,7 @@ app.register_blueprint(auth, url_prefix='/auth')
|
||||
app.register_blueprint(settings, url_prefix='/settings')
|
||||
app.register_blueprint(community, url_prefix='/community')
|
||||
app.register_blueprint(shared_env, url_prefix='/shared_env')
|
||||
app.register_blueprint(tests_bp, url_prefix='/tests')
|
||||
|
||||
# Swith to inter app routing, which results in speed up from ~400ms to ~270ms
|
||||
# https://stackoverflow.com/questions/76886643/linking-two-not-exposed-dokku-apps
|
||||
|
||||
Reference in New Issue
Block a user