We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a568ae9 commit 4516631Copy full SHA for 4516631
code/function/main.py renamed to code/function/function_app.py
code/function/wrapper/__init__.py
@@ -1,5 +1,5 @@
1
import azure.functions as func
2
-from function.main import fastapi_app
+from function.function_app import fastapi_app
3
4
5
async def main(req: func.HttpRequest, context: func.Context) -> func.HttpResponse:
tests/test_main.py
@@ -1,6 +1,6 @@
import pytest
from fastapi.testclient import TestClient
6
@pytest.fixture(scope="module")
0 commit comments