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
7 changes: 3 additions & 4 deletions .github/workflows/functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

# Check on any PR
pull_request:
branches: "*"
branches: ["*"]
push:
branches: [master]
paths:
Expand All @@ -31,8 +31,7 @@ jobs:
- "2025.0.157"
python:
# Maximum supported version
# Note: 3.10 is still in alpha, so we stick with 3.9 until there is an official 3.10
- "3.9"
- "3.13.1"

services:
nuxeo:
Expand Down Expand Up @@ -69,7 +68,7 @@ jobs:
run: python -m tox -e functional

- name: Upload coverage to Codecov
if: ${{ success() }} || ${{ failure() }}
if: ${{ success() || failure() }}
uses: codecov/codecov-action@v3.1.5
with:
files: ./coverage.xml
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Release date: ``2026-xx-xx``
- `NXPY-263 <https://hyland.atlassian.net/browse/NXPY-263>`__: Align Python client with LTS 2025
- `NXPY-264 <https://hyland.atlassian.net/browse/NXPY-264>`__: Code Scanning - Incomplete URL substring sanitization
- `NXPY-265 <https://hyland.atlassian.net/browse/NXPY-265>`__: Code Scanning - Workflow does not contain permissions
- `NXPY-269 <https://hyland.atlassian.net/browse/NXPY-269>`__: Fix functional test
- `NXPY-270 <https://hyland.atlassian.net/browse/NXPY-270>`__: Upgrade Python version

Technical changes
Expand Down
Loading