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
2 changes: 2 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
fedver: latest
- toxenv: py313
fedver: latest
- toxenv: py314
fedver: latest
runs-on: ubuntu-latest
container: "fedorapython/fedora-python-tox:${{ matrix.fedver }}"
steps:
Expand Down
3 changes: 3 additions & 0 deletions duffy/legacy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ def lookup_pool_from_map(**req_specs: Optional[str]) -> Optional[str]:
if pool_template:
pool = jinja2.Template(pool_template).render(**req_specs)
break
else: # pragma: no cover
# Python 3.14 + tox screws up coverage tallying here, so ignore it explicitly.
pass

return pool

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
format
lint
poetry
py{38,39,310,311,312,313}
py{38,39,310,311,312,313,314}
isolated_build = true
skip_missing_interpreters = true

Expand Down