File: __init__.py

package info (click to toggle)
python-pytest-asyncio 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 616 kB
  • sloc: python: 2,421; makefile: 24; sh: 1
file content (8 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (3)
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")