File: __init__.py

package info (click to toggle)
python-pytest-asyncio 0.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 656 kB
  • sloc: python: 3,108; makefile: 26; sh: 1
file content (8 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
"""The main point for importing pytest-asyncio items."""

from __future__ import annotations

from ._version import version as __version__  # noqa: F401
from .plugin import fixture, is_async_test

__all__ = ("fixture", "is_async_test")