Skip to content
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/devRun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
timeout-minutes: 15
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.52.0
image: mcr.microsoft.com/playwright:v1.53.2
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
needs: setup-matrix
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.52.0
image: mcr.microsoft.com/playwright:v1.53.2
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
- id: no-commit-to-branch
args: [ '--branch', 'main' ]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.0
rev: 0.33.1
hooks:
- id: check-github-workflows
args: ["--verbose"]
Expand All @@ -36,7 +36,7 @@ repos:
stages: [commit-msg]
args: []
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.12
rev: v0.12.1
hooks:
- id: ruff
args: [ --fix ]
Expand All @@ -55,7 +55,7 @@ repos:
- id: validate-pyproject
additional_dependencies: ["validate-pyproject-schema-store[all]"]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
rev: v2.15.0
hooks:
- id: pretty-format-toml
exclude: poetry.lock
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[dependency-groups]
dev = [
"ruff==0.11.12",
"ruff==0.12.1",
"pre-commit==4.2.0"
]

[project]
dependencies = [
"allure-pytest==2.14.2",
"axe-playwright-python==0.1.4",
"playwright==1.52.0",
"pytest==8.4.0",
"allure-pytest==2.14.3",
"axe-playwright-python==0.1.5",
"playwright==1.53.0",
"pytest==8.4.1",
"pytest-base-url==2.1.0",
"pytest-playwright==0.7.0",
"pytest-split==0.10.0",
"requests==2.32.3"
"requests==2.32.4"
]
description = "Playwright Python example project with pytest and Allure report"
name = "playwright-python"
Expand Down
Loading
Loading