Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.14]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
exclude:
- os: macos-latest
python-version: 3.8
python-version: "3.8"
- os: macos-latest
python-version: 3.9
python-version: "3.9"
fail-fast: false
env:
MOLER_DEBUG_THREADS: True
PYTHON_COVERAGE: '3.13'
PYTHON_COVERAGE: '3.14'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.os }} ${{ matrix.python-version }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
adb devices
- name: Test with pytest
if: ${{ (matrix.python-version != env.PYTHON_COVERAGE) || (matrix.os == 'macos-latest') }}
timeout-minutes: 14
timeout-minutes: 20
run: |
python -m pytest -vvvsss test/
# python -m pytest -c py3pytest.ini -vvvsss test/
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.13]
python-version: [3.14]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.os }} ${{ matrix.python-version }}
Expand Down