Skip to content
New issue

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

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

Already on GitHub? # to your account

fix(conda build): revert noarch and add playwright install test #2792

Merged
merged 6 commits into from
Mar 31, 2025
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Get conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.12
python-version: 3.9
channels: conda-forge
miniconda-version: latest
- name: Prepare
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Get conda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.12
python-version: 3.9
channels: conda-forge
miniconda-version: latest
- name: Prepare
Expand Down
7 changes: 6 additions & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ source:
path: .

build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
binary_relocation: False
Expand All @@ -32,6 +31,9 @@ requirements:
- pyee>=12,<13

test: # [build_platform == target_platform]
files:
- scripts/example_sync.py
- scripts/example_async.py
requires:
- pip
imports:
Expand All @@ -40,6 +42,9 @@ test: # [build_platform == target_platform]
- playwright.async_api
commands:
- playwright --help
- playwright install --with-deps
- python scripts/example_sync.py
- python scripts/example_async.py

about:
home: https://github.com/microsoft/playwright-python
Expand Down
30 changes: 30 additions & 0 deletions scripts/example_async.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import asyncio

from playwright.async_api import async_playwright


async def main() -> None:
async with async_playwright() as p:
for browser_type in [p.chromium, p.firefox, p.webkit]:
browser = await browser_type.launch()
page = await browser.new_page()
assert await page.evaluate("() => 11 * 11") == 121
await browser.close()


if __name__ == "__main__":
asyncio.run(main())
28 changes: 28 additions & 0 deletions scripts/example_sync.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from playwright.sync_api import sync_playwright


def main() -> None:
with sync_playwright() as p:
for browser_type in [p.chromium, p.firefox, p.webkit]:
browser = browser_type.launch()
page = browser.new_page()
assert page.evaluate("() => 11 * 11") == 121
browser.close()


if __name__ == "__main__":
main()
Loading