Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/devRun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
timeout-minutes: 15
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.61.1
image: mcr.microsoft.com/playwright:v1.62.1
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
python-version: "3.14"
- name: Set up uv
uses: astral-sh/setup-uv@v8.2.0
uses: astral-sh/setup-uv@v10.0.1
with:
enable-cache: true
- name: Create venv & install dependencies
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: npx -y allure generate allure-results --output allure-report
- name: Allure PR summary
if: always()
uses: allure-framework/allure-action@v0.8.0
uses: allure-framework/allure-action@v0.9.0
with:
report-directory: "./allure-report"
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ jobs:
needs: setup-matrix
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.61.1
image: mcr.microsoft.com/playwright:v1.62.1
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
python-version: "3.14"
- name: Set up uv
uses: astral-sh/setup-uv@v8.2.0
uses: astral-sh/setup-uv@v10.0.1
with:
enable-cache: true
- name: Create venv & install dependencies
Expand Down
8 changes: 4 additions & 4 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.37.4
rev: 0.38.0
hooks:
- id: check-github-workflows
args: ["--verbose"]
Expand All @@ -36,21 +36,21 @@ repos:
stages: [commit-msg]
args: []
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.20
rev: v0.16.3
hooks:
- id: ruff
args: [ --fix ]
continue_on_error: true
- id: ruff-format
continue_on_error: true
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
rev: v2.4.3
hooks:
- id: codespell
additional_dependencies:
- tomli
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.25
rev: 0.26
hooks:
- id: validate-pyproject
additional_dependencies: ["validate-pyproject-schema-store[all]"]
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[dependency-groups]
dev = [
"ruff==0.15.20",
"pre-commit==4.6.0",
"pytest-flakiness==1.1.0",
"ruff==0.16.3",
"pre-commit==4.6.2",
"pytest-flakiness==1.2.0",
]

[project]
dependencies = [
"allure-pytest==2.16.0",
"axe-playwright-python==0.1.7",
"playwright==1.61.0",
"axe-playwright-python==0.1.8",
"playwright==1.62.0",
"pytest==9.1.1",
"pytest-base-url==2.1.0",
"pytest-playwright==0.8.0",
"pytest-playwright==0.9.0",
"pytest-split==0.11.0",
"requests==2.34.2"
]
Expand Down
Loading
Loading