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

chore: update asyncio project metadata #260

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ test:

about:
home: https://github.com/microsoft/playwright-pytest
summary: A pytest wrapper with fixtures for Playwright to automate web browsers
summary: A pytest wrapper with {% if package == 'pytest-playwright-asyncio' %} async{% endif %}fixtures for Playwright to automate web browsers
license: Apache-2.0
license_file: LICENSE
2 changes: 1 addition & 1 deletion pytest-playwright-asyncio/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pytest plugin for Playwright [![PyPI](https://img.shields.io/pypi/v/pytest-playwright)](https://pypi.org/project/pytest-playwright/)
# Pytest plugin for Playwright [![PyPI](https://img.shields.io/pypi/v/pytest-playwright-asyncio)](https://pypi.org/project/pytest-playwright-asyncio/)

Write end-to-end tests for your web apps with [Playwright](https://github.com/microsoft/playwright-python) and [pytest](https://docs.pytest.org/en/stable/).

Expand Down
2 changes: 1 addition & 1 deletion pytest-playwright-asyncio/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pytest-playwright-asyncio"
description = "A pytest wrapper with fixtures for Playwright to automate web browsers"
description = "A pytest wrapper with async fixtures for Playwright to automate web browsers"
readme = "README.md"
authors = [
{name = "Microsoft"}
Expand Down
2 changes: 2 additions & 0 deletions pytest-playwright/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Write end-to-end tests for your web apps with [Playwright](https://github.com/mi
- Support for **headless and headed** execution.
- **Built-in fixtures** that provide browser primitives to test functions.

**Note**: If you are looking for an asyncio version of this plugin, check out [pytest-playwright-asyncio](https://pypi.org/project/pytest-playwright-asyncio/).

## Documentation

See on [playwright.dev](https://playwright.dev/python/docs/test-runners) for examples and more detailed information.
Loading