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
4 changes: 2 additions & 2 deletions .github/workflows/devRun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- name: Set up uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Create venv & install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- name: Set up uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Create venv & install dependencies
Expand All @@ -63,7 +63,7 @@ jobs:
--group ${{ matrix.group }}
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: allure-results-${{ matrix.group }}
path: allure-results
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ repos:
- id: no-commit-to-branch
args: ['--branch', 'main']
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.34.0
rev: 0.34.1
hooks:
- id: check-github-workflows
args: ["--verbose"]
- id: check-renovate
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v4.2.0
rev: v4.3.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
args: []
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.2
rev: v0.14.3
hooks:
- id: ruff
args: [ --fix ]
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[dependency-groups]
dev = [
"ruff==0.13.2",
"ruff==0.14.3",
"pre-commit==4.3.0"
]

Expand All @@ -12,20 +12,20 @@ dependencies = [
"allure-pytest==2.15.0",
"assertpy==1.1",
"dataclasses-json==0.6.7",
"deprecated==1.2.18",
"deprecated==1.3.1",
"mailinator-python-client-2==0.0.8",
"mysql-connector-python==9.4.0",
"mysql-connector-python==9.5.0",
"pytest==8.4.2",
"pytest-base-url==2.1.0",
"pytest-check==2.5.4",
"pytest-check==2.6.0",
"pytest-dependency==0.6.0",
"pytest-ordering==0.6",
"pytest-rerunfailures==16.0.1",
"pytest-rerunfailures==16.1",
"pytest-split==0.10.0",
"python-dotenv==1.1.1",
"python-dotenv==1.2.1",
"requests==2.32.5",
"requests-toolbelt==1.0.0",
"selenium==4.35.0",
"selenium==4.38.0",
"tenacity==9.1.2",
"visual-regression-tracker==4.9.0",
"xlrd==2.0.2"
Expand Down
Loading
Loading