From c553068a7839f5a24e95678cde9da1d30b896c08 Mon Sep 17 00:00:00 2001 From: S-Ghosh-Dev2 Date: Fri, 27 Mar 2026 12:31:24 +0530 Subject: [PATCH] NXPY-269: Fix functional test --- .github/workflows/functional_tests.yml | 7 +++---- CHANGELOG.rst | 3 ++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/functional_tests.yml b/.github/workflows/functional_tests.yml index dce4134..96da559 100644 --- a/.github/workflows/functional_tests.yml +++ b/.github/workflows/functional_tests.yml @@ -10,7 +10,7 @@ on: # Check on any PR pull_request: - branches: "*" + branches: ["*"] push: branches: [master] paths: @@ -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: @@ -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 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ff94e0a..ccccbd4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,13 +4,14 @@ Changelog 6.1.3 ----- -Release date: ``2025-xx-xx`` +Release date: ``2026-xx-xx`` - `NXPY-261 `__: Deploy artifacts to PyPI.org - `NXPY-262 `__: Upgrade dependencies - `NXPY-263 `__: Align Python client with LTS 2025 - `NXPY-264 `__: Code Scanning - Incomplete URL substring sanitization - `NXPY-265 `__: Code Scanning - Workflow does not contain permissions +- `NXPY-269 `__: Fix functional test Technical changes -----------------