- Sort Score
- Result 10 results
- Languages All
Results 21 - 23 of 23 for app03_py39 (0.04 sec)
-
docs/de/docs/tutorial/testing.md
``` . ├── app │ ├── __init__.py │ └── main.py ``` In der Datei `main.py` haben Sie Ihre **FastAPI**-Anwendung: {* ../../docs_src/app_testing/app_a_py39/main.py *} ### Testdatei { #testing-file } Dann könnten Sie eine Datei `test_main.py` mit Ihren Tests haben. Sie könnte sich im selben Python-Package befinden (dasselbe Verzeichnis mit einer `__init__.py`-Datei):Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 7K bytes - Viewed (0) -
docs/pt/docs/advanced/settings.md
Por exemplo, você poderia ter um arquivo `config.py` com: {* ../../docs_src/settings/app01_py39/config.py *} E então usá-lo em um arquivo `main.py`: {* ../../docs_src/settings/app01_py39/main.py hl[3,11:13] *} /// tip | DicaRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13K bytes - Viewed (0) -
tests/test_tutorial/test_bigger_applications/test_main.py
import importlib import pytest from fastapi.testclient import TestClient @pytest.fixture( name="client", params=[ "app_py39.main", "app_an_py39.main", ], ) def get_client(request: pytest.FixtureRequest): mod = importlib.import_module(f"docs_src.bigger_applications.{request.param}") client = TestClient(mod.app) return client def test_users_token_jessica(client: TestClient):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 21.3K bytes - Viewed (0)