Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 7 additions & 7 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: xcrun --sdk iphonesimulator --show-sdk-version

- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: 3.14

Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-java@v6.0.1
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
script: echo "Generated AVD snapshot for caching."

- name: Set up Python 3.14
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: 3.14

Expand Down Expand Up @@ -245,15 +245,15 @@ jobs:
XCODE_VERSION: 16.4
IOS_VERSION: 18.5
IPHONE_MODEL: iPhone 16
FLUTTER_ANDROID_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.33/app-debug.apk"
FLUTTER_IOS_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.33/ios.zip"
FLUTTER_ANDROID_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.32/app-debug.apk"
FLUTTER_IOS_APP: "https://github.com/AppiumTestDistribution/appium-flutter-server/releases/download/0.0.32/ios.zip"
PREBUILT_WDA_PATH: ${{ github.workspace }}/wda/WebDriverAgentRunner-Runner.app

steps:

- uses: actions/checkout@v7

- uses: actions/setup-java@v6.0.1
- uses: actions/setup-java@v5
if: matrix.e2e-tests == 'flutter-android'
with:
distribution: 'zulu'
Expand All @@ -267,7 +267,7 @@ jobs:
sudo udevadm trigger --name-match=kvm

- name: Set up Python 3.14
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: 3.14

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lock-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install uv
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,21 @@ name: Release

on:
workflow_dispatch:
push:
branches: [ master ]
# push:
# branches: [ master ]

permissions:
contents: write
id-token: write

jobs:
release:
# Releases are cut from the upstream repository only. Without this guard the
# workflow also runs on forks, where semantic-release rewrites the version in
# pyproject.toml, commits to the default branch and attempts a PyPI upload.
if: github.repository == 'appium/python-client'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Cache uv modules
Expand Down
14 changes: 7 additions & 7 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ indent-width = 4

[lint]
select = [
"F", # Pyflakes
"PL", # Pylint
"I", # isort
"PERF", # perflint
"FURB", # Refurb
"SIM", # Simplify
"UP", # Upgrade
# Pyflakes
"F",
# Pylint
"PL",
# isort
"I",
]

[lint.per-file-ignores]
Expand All @@ -23,6 +22,7 @@ select = [
]

[lint.pylint]

max-args = 6

[format]
Expand Down
Loading
Loading