Skip to content

Commit fbe2d37

Browse files
authored
Adding Python 3.14 testing to CI
1 parent d8047ae commit fbe2d37

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,29 @@ on: [push, pull_request]
44

55
jobs:
66
run:
7+
name: "Test"
8+
strategy:
9+
matrix:
10+
python_version: ["3.7", "3.14"]
711
runs-on: ubuntu-22.04
812
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
913
steps:
1014

11-
- uses: actions/setup-python@v4
15+
- uses: actions/setup-python@v6
1216
with:
13-
python-version: '3.7'
17+
python-version: ${{ matrix.python_version }}
1418

1519
- name: Initialize pip environment
1620
run: python -m pip install pipenv
1721

1822
- name: Checkout repo
19-
uses: actions/checkout@v2
23+
uses: actions/checkout@v5
2024
with:
2125
submodules : true
2226

2327
- name: Install python environment
24-
run: pipenv install --dev
28+
run: |
29+
pipenv install --dev --skip-lock --python ${{ matrix.python_version }}
2530
2631
- name: Run CI
2732
env:

src/main/python/ttconv/filters/isd_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
class ISDFilter:
3131
"""Abstract base class for filters"""
3232

33-
def process(self, isd: ISD):
33+
def process(self, isd: ISD): # pragma: no cover
3434
"""Process the specified ISD and returns it."""
3535
raise NotImplementedError

0 commit comments

Comments
 (0)