Skip to content

Commit 75954c4

Browse files
committed
minor fix
1 parent 525c097 commit 75954c4

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Build release distributions
2424
run: |
25-
uv venv
25+
uv venv --python 3.12.2
2626
source .venv/bin/activate
2727
uv pip install --upgrade pip twine
2828
uv pip install -r requirements.txt

runtime.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
python-3.13.2
2+
PYTHON_VERSION=3.13.2

tests/tool/playwright_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import re
22
from playwright.sync_api import Page, expect
33

4-
def test_has_title(page: Page):
4+
def _test_has_title(page: Page):
55
page.goto("https://playwright.dev/")
66
expect(page).to_have_title(re.compile("Playwright"))
77

88

9-
def test_get_started_link(page: Page):
9+
def _test_get_started_link(page: Page):
1010
page.goto("https://playwright.dev/")
1111
page.get_by_role("link", name="Get started").click()
1212

uv.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)