Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for app03_py39 (0.05 sec)

  1. tests/test_tutorial/test_settings/test_app03.py

    import importlib
    from types import ModuleType
    
    import pytest
    from fastapi.testclient import TestClient
    from pytest import MonkeyPatch
    
    
    @pytest.fixture(
        name="mod_path",
        params=[
            pytest.param("app03_py39"),
            pytest.param("app03_an_py39"),
        ],
    )
    def get_mod_path(request: pytest.FixtureRequest):
        mod_path = f"docs_src.settings.{request.param}"
        return mod_path
    
    
    @pytest.fixture(name="main_mod")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. pyproject.toml

        "docs_src/schema_extra_example/tutorial001_pv1_py310.py",
        "docs_src/schema_extra_example/tutorial001_pv1_py39.py",
        "docs_src/path_operation_advanced_configuration/tutorial007_pv1_py39.py",
        "docs_src/settings/app03_py39/config_pv1.py",
        "docs_src/settings/app03_an_py39/config_pv1.py",
        "docs_src/settings/tutorial001_pv1_py39.py",
    ]
    
    [tool.coverage.report]
    show_missing = true
    sort = "-Cover"
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/async-tests.md

    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    O arquivo `main.py` teria:
    
    {* ../../docs_src/async_tests/app_a_py39/main.py *}
    
    O arquivo `test_main.py` teria os testes para para o arquivo `main.py`, ele poderia ficar assim:
    
    {* ../../docs_src/async_tests/app_a_py39/test_main.py *}
    
    ## Executá-lo { #run-it }
    
    Você pode executar os seus testes normalmente via:
    
    <div class="termy">
    
    ```console
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. docs/ru/docs/advanced/async-tests.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    Файл `main.py`:
    
    {* ../../docs_src/async_tests/app_a_py39/main.py *}
    
    Файл `test_main.py` содержит тесты для `main.py`, теперь он может выглядеть так:
    
    {* ../../docs_src/async_tests/app_a_py39/test_main.py *}
    
    ## Запуск тестов { #run-it }
    
    Вы можете запустить свои тесты как обычно:
    
    <div class="termy">
    
    ```console
    $ pytest
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/async-tests.md

    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    El archivo `main.py` tendría:
    
    {* ../../docs_src/async_tests/app_a_py39/main.py *}
    
    El archivo `test_main.py` tendría los tests para `main.py`, podría verse así ahora:
    
    {* ../../docs_src/async_tests/app_a_py39/test_main.py *}
    
    ## Ejecútalo { #run-it }
    
    Puedes ejecutar tus tests como de costumbre vía:
    
    <div class="termy">
    
    ```console
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_settings/test_app02.py

    import importlib
    from types import ModuleType
    
    import pytest
    from pytest import MonkeyPatch
    
    
    @pytest.fixture(
        name="mod_path",
        params=[
            pytest.param("app02_py39"),
            pytest.param("app02_an_py39"),
        ],
    )
    def get_mod_path(request: pytest.FixtureRequest):
        mod_path = f"docs_src.settings.{request.param}"
        return mod_path
    
    
    @pytest.fixture(name="main_mod")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 1K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_settings/test_app01.py

    from fastapi.testclient import TestClient
    from pydantic import ValidationError
    from pytest import MonkeyPatch
    
    
    @pytest.fixture(
        name="mod_name",
        params=[
            pytest.param("app01_py39"),
        ],
    )
    def get_mod_name(request: pytest.FixtureRequest):
        return f"docs_src.settings.{request.param}.main"
    
    
    @pytest.fixture(name="client")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_testing/test_main_a.py

    from docs_src.app_testing.app_a_py39.test_main import client, test_read_main
    
    
    def test_main():
        test_read_main()
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/": {
                    "get": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 830 bytes
    - Viewed (0)
  9. tests/test_tutorial/test_testing/test_main_b.py

    import importlib
    from types import ModuleType
    
    import pytest
    
    from ...utils import needs_py310
    
    
    @pytest.fixture(
        name="test_module",
        params=[
            "app_b_py39.test_main",
            pytest.param("app_b_py310.test_main", marks=needs_py310),
            "app_b_an_py39.test_main",
            pytest.param("app_b_an_py310.test_main", marks=needs_py310),
        ],
    )
    def get_test_module(request: pytest.FixtureRequest) -> ModuleType:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 833 bytes
    - Viewed (0)
  10. docs/en/docs/advanced/async-tests.md

    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   └── test_main.py
    ```
    
    The file `main.py` would have:
    
    {* ../../docs_src/async_tests/app_a_py39/main.py *}
    
    The file `test_main.py` would have the tests for `main.py`, it could look like this now:
    
    {* ../../docs_src/async_tests/app_a_py39/test_main.py *}
    
    ## Run it { #run-it }
    
    You can run your tests as usual via:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top