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
8 changes: 7 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ on:
schedule:
- cron: "0 14 * * 0" # Every Sunday, 2 hours after midday

permissions:
contents: read

jobs:
integration-tests:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -56,7 +59,8 @@ jobs:
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude onfido
- name: Test with pytest
if: ${{ matrix.python-version == '3.13' &&
github.repository_owner == 'onfido' }}
github.repository_owner == 'onfido' &&
(github.event_name == 'pull_request' || github.event_name == 'release') }}
run: |
poetry run pytest --show-capture=no
env:
Expand All @@ -71,6 +75,8 @@ jobs:
runs-on: ubuntu-latest
needs: integration-tests
environment: delivery
permissions:
contents: write
if: github.event_name == 'release'
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

- Release based on Onfido OpenAPI spec version [v5.4.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v5.4.0):
- [ENT-26] Add AES document download endpoint
- Fix dependabot error, add support for python 3.13 (and drop 3.8)
- [ENT-26] Add AES documents test

## v5.3.0 11th July 2025

- Release based on Onfido OpenAPI spec version [v5.3.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v5.3.0):
- Release based on Onfido OpenAPI spec version [v5.3.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v5.3.0):
- [DEXTV2-9494] Add manual_transmission_restriction to document with driver verification report

Expand Down