Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix async_generator error by making the app fixture async #336

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Apr 26, 2024

  1. fix async_generator error by passing the fixture name as an argument

    We are yielding the app fixture but not passing it as an argument which seems to break the second part of the documentation where we attempt to access the `test_client()` it gives an async_generator.
    
    ```bash
    AttributeError: 'async_generator' object has no attribute 'test_client'
    ```
    john0isaac authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    03b91a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0230b82 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2024

  1. Configuration menu
    Copy the full SHA
    e79cdb4 View commit details
    Browse the repository at this point in the history