-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into sadik-feature-branch
- Loading branch information
Showing
42 changed files
with
367 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,25 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu, windows, macos ] | ||
release: [ stable, nightly ] | ||
include: | ||
- os: ubuntu | ||
release: stable | ||
python: '3.8' | ||
- os: ubuntu | ||
release: nightly | ||
python: '3.11' | ||
- os: windows | ||
release: stable | ||
python: '3.9' | ||
- os: windows | ||
release: nightly | ||
python: '3.12' | ||
- os: macos | ||
release: stable | ||
python: '3.10' | ||
- os: macos | ||
release: nightly | ||
python: '3.13' | ||
runs-on: ${{ format('{0}-latest', matrix.os) }} | ||
steps: | ||
- name: Checkout GitHub repo | ||
|
@@ -47,7 +64,7 @@ jobs: | |
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.8 | ||
python-version: ${{ matrix.python }} | ||
- name: Install dependencies nightly non-Windows | ||
if: matrix.release == 'nightly' && matrix.os != 'windows' | ||
run: | | ||
|
@@ -80,8 +97,8 @@ jobs: | |
- name: Run tests | ||
uses: nick-invision/[email protected] | ||
with: | ||
timeout_minutes: 40 | ||
timeout_minutes: 60 | ||
max_attempts: 3 | ||
command: | | ||
cd examples/python | ||
pytest | ||
pytest --reruns 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ selenium==4.26.1 | |
pytest | ||
trio | ||
pytest-trio | ||
pytest-rerunfailures | ||
flake8 | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.