├── .github ├── CODEOWNERS ├── actionlint-matcher.json ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── SECURITY.rst ├── changelog.d └── .gitkeep ├── constraints.txt ├── dependencies ├── docs │ └── constraints.txt └── pytest-min │ ├── constraints.txt │ └── requirements.txt ├── docs ├── concepts.rst ├── concepts_concurrent_execution_example.py ├── concepts_function_scope_example.py ├── concepts_module_scope_example.py ├── conf.py ├── how-to-guides │ ├── change_default_fixture_loop.rst │ ├── change_default_test_loop.rst │ ├── change_fixture_loop.rst │ ├── change_fixture_loop_example.py │ ├── class_scoped_loop_example.py │ ├── index.rst │ ├── migrate_from_0_21.rst │ ├── migrate_from_0_23.rst │ ├── module_scoped_loop_example.py │ ├── multiple_loops.rst │ ├── multiple_loops_example.py │ ├── package_scoped_loop_example.py │ ├── parametrize_with_asyncio.rst │ ├── parametrize_with_asyncio_example.py │ ├── run_class_tests_in_same_loop.rst │ ├── run_module_tests_in_same_loop.rst │ ├── run_package_tests_in_same_loop.rst │ ├── test_item_is_async.rst │ ├── test_item_is_async_example.py │ └── uvloop.rst ├── index.rst ├── reference │ ├── changelog.rst │ ├── configuration.rst │ ├── decorators │ │ ├── index.rst │ │ └── pytest_asyncio_fixture_example.py │ ├── fixtures │ │ ├── event_loop_policy_example.py │ │ ├── event_loop_policy_parametrized_example.py │ │ └── index.rst │ ├── functions.rst │ ├── index.rst │ └── markers │ │ ├── class_scoped_loop_custom_policies_strict_mode_example.py │ │ ├── class_scoped_loop_strict_mode_example.py │ │ ├── class_scoped_loop_with_fixture_strict_mode_example.py │ │ ├── function_scoped_loop_pytestmark_strict_mode_example.py │ │ ├── function_scoped_loop_strict_mode_example.py │ │ ├── index.rst │ │ └── module_scoped_loop_strict_mode_example.py └── support.rst ├── pyproject.toml ├── pytest_asyncio ├── __init__.py ├── plugin.py └── py.typed ├── tests ├── __init__.py ├── async_fixtures │ ├── __init__.py │ ├── test_async_fixtures.py │ ├── test_async_fixtures_contextvars.py │ ├── test_nested.py │ └── test_shared_module_fixture.py ├── conftest.py ├── hypothesis │ ├── __init__.py │ └── test_base.py ├── markers │ ├── __init__.py │ ├── test_class_scope.py │ ├── test_function_scope.py │ ├── test_invalid_arguments.py │ ├── test_mixed_scope.py │ ├── test_module_scope.py │ ├── test_package_scope.py │ └── test_session_scope.py ├── modes │ ├── __init__.py │ ├── test_auto_mode.py │ └── test_strict_mode.py ├── test_asyncio_debug.py ├── test_asyncio_fixture.py ├── test_asyncio_mark.py ├── test_doctest.py ├── test_event_loop_fixture.py ├── test_fixture_loop_scopes.py ├── test_import.py ├── test_is_async_test.py ├── test_package.py ├── test_port_factories.py ├── test_set_event_loop.py ├── test_simple.py ├── test_skips.py ├── test_subprocess.py └── test_task_cleanup.py ├── tools └── get-version.py └── tox.ini /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @asvetlov @seifertm @Tinche 2 | -------------------------------------------------------------------------------- /.github/actionlint-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.github/actionlint-matcher.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/SECURITY.rst -------------------------------------------------------------------------------- /changelog.d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/constraints.txt -------------------------------------------------------------------------------- /dependencies/docs/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/dependencies/docs/constraints.txt -------------------------------------------------------------------------------- /dependencies/pytest-min/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/dependencies/pytest-min/constraints.txt -------------------------------------------------------------------------------- /dependencies/pytest-min/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/dependencies/pytest-min/requirements.txt -------------------------------------------------------------------------------- /docs/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/concepts.rst -------------------------------------------------------------------------------- /docs/concepts_concurrent_execution_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/concepts_concurrent_execution_example.py -------------------------------------------------------------------------------- /docs/concepts_function_scope_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/concepts_function_scope_example.py -------------------------------------------------------------------------------- /docs/concepts_module_scope_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/concepts_module_scope_example.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/how-to-guides/change_default_fixture_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/change_default_fixture_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/change_default_test_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/change_default_test_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/change_fixture_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/change_fixture_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/change_fixture_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/change_fixture_loop_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/class_scoped_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/class_scoped_loop_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/index.rst -------------------------------------------------------------------------------- /docs/how-to-guides/migrate_from_0_21.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/migrate_from_0_21.rst -------------------------------------------------------------------------------- /docs/how-to-guides/migrate_from_0_23.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/migrate_from_0_23.rst -------------------------------------------------------------------------------- /docs/how-to-guides/module_scoped_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/module_scoped_loop_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/multiple_loops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/multiple_loops.rst -------------------------------------------------------------------------------- /docs/how-to-guides/multiple_loops_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/multiple_loops_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/package_scoped_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/package_scoped_loop_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/parametrize_with_asyncio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/parametrize_with_asyncio.rst -------------------------------------------------------------------------------- /docs/how-to-guides/parametrize_with_asyncio_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/parametrize_with_asyncio_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/run_class_tests_in_same_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/run_class_tests_in_same_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/run_module_tests_in_same_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/run_module_tests_in_same_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/run_package_tests_in_same_loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/run_package_tests_in_same_loop.rst -------------------------------------------------------------------------------- /docs/how-to-guides/test_item_is_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/test_item_is_async.rst -------------------------------------------------------------------------------- /docs/how-to-guides/test_item_is_async_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/test_item_is_async_example.py -------------------------------------------------------------------------------- /docs/how-to-guides/uvloop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/how-to-guides/uvloop.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/changelog.rst -------------------------------------------------------------------------------- /docs/reference/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/configuration.rst -------------------------------------------------------------------------------- /docs/reference/decorators/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/decorators/index.rst -------------------------------------------------------------------------------- /docs/reference/decorators/pytest_asyncio_fixture_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/decorators/pytest_asyncio_fixture_example.py -------------------------------------------------------------------------------- /docs/reference/fixtures/event_loop_policy_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/fixtures/event_loop_policy_example.py -------------------------------------------------------------------------------- /docs/reference/fixtures/event_loop_policy_parametrized_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/fixtures/event_loop_policy_parametrized_example.py -------------------------------------------------------------------------------- /docs/reference/fixtures/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/fixtures/index.rst -------------------------------------------------------------------------------- /docs/reference/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/functions.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/markers/class_scoped_loop_custom_policies_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/class_scoped_loop_custom_policies_strict_mode_example.py -------------------------------------------------------------------------------- /docs/reference/markers/class_scoped_loop_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/class_scoped_loop_strict_mode_example.py -------------------------------------------------------------------------------- /docs/reference/markers/class_scoped_loop_with_fixture_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/class_scoped_loop_with_fixture_strict_mode_example.py -------------------------------------------------------------------------------- /docs/reference/markers/function_scoped_loop_pytestmark_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/function_scoped_loop_pytestmark_strict_mode_example.py -------------------------------------------------------------------------------- /docs/reference/markers/function_scoped_loop_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/function_scoped_loop_strict_mode_example.py -------------------------------------------------------------------------------- /docs/reference/markers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/index.rst -------------------------------------------------------------------------------- /docs/reference/markers/module_scoped_loop_strict_mode_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/reference/markers/module_scoped_loop_strict_mode_example.py -------------------------------------------------------------------------------- /docs/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/docs/support.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/pytest_asyncio/__init__.py -------------------------------------------------------------------------------- /pytest_asyncio/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/pytest_asyncio/plugin.py -------------------------------------------------------------------------------- /pytest_asyncio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/async_fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/async_fixtures/test_async_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/async_fixtures/test_async_fixtures.py -------------------------------------------------------------------------------- /tests/async_fixtures/test_async_fixtures_contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/async_fixtures/test_async_fixtures_contextvars.py -------------------------------------------------------------------------------- /tests/async_fixtures/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/async_fixtures/test_nested.py -------------------------------------------------------------------------------- /tests/async_fixtures/test_shared_module_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/async_fixtures/test_shared_module_fixture.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/hypothesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hypothesis/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/hypothesis/test_base.py -------------------------------------------------------------------------------- /tests/markers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/markers/test_class_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_class_scope.py -------------------------------------------------------------------------------- /tests/markers/test_function_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_function_scope.py -------------------------------------------------------------------------------- /tests/markers/test_invalid_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_invalid_arguments.py -------------------------------------------------------------------------------- /tests/markers/test_mixed_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_mixed_scope.py -------------------------------------------------------------------------------- /tests/markers/test_module_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_module_scope.py -------------------------------------------------------------------------------- /tests/markers/test_package_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_package_scope.py -------------------------------------------------------------------------------- /tests/markers/test_session_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/markers/test_session_scope.py -------------------------------------------------------------------------------- /tests/modes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modes/test_auto_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/modes/test_auto_mode.py -------------------------------------------------------------------------------- /tests/modes/test_strict_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/modes/test_strict_mode.py -------------------------------------------------------------------------------- /tests/test_asyncio_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_asyncio_debug.py -------------------------------------------------------------------------------- /tests/test_asyncio_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_asyncio_fixture.py -------------------------------------------------------------------------------- /tests/test_asyncio_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_asyncio_mark.py -------------------------------------------------------------------------------- /tests/test_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_doctest.py -------------------------------------------------------------------------------- /tests/test_event_loop_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_event_loop_fixture.py -------------------------------------------------------------------------------- /tests/test_fixture_loop_scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_fixture_loop_scopes.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_is_async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_is_async_test.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_port_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_port_factories.py -------------------------------------------------------------------------------- /tests/test_set_event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_set_event_loop.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/test_skips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_skips.py -------------------------------------------------------------------------------- /tests/test_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_subprocess.py -------------------------------------------------------------------------------- /tests/test_task_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tests/test_task_cleanup.py -------------------------------------------------------------------------------- /tools/get-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tools/get-version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/HEAD/tox.ini --------------------------------------------------------------------------------