Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ on: # yamllint disable-line rule:truthy
required: false
default: "false"
type: string
upgrade-sqlalchemy:
description: "Whether to upgrade SQLAlchemy or not (true/false)"
required: false
default: "false"
type: string
upgrade-boto:
description: "Whether to upgrade boto or not (true/false)"
required: false
Expand Down Expand Up @@ -159,6 +164,7 @@ jobs:
PARALLEL_TEST_TYPES: ${{ matrix.test-types.test_types }}
PYTHON_MAJOR_MINOR_VERSION: "${{ matrix.python-version }}"
UPGRADE_BOTO: "${{ inputs.upgrade-boto }}"
UPGRADE_SQLALCHEMY: "${{ inputs.upgrade-sqlalchemy }}"
AIRFLOW_MONITOR_DELAY_TIME_IN_SECONDS: "${{inputs.monitor-delay-time-in-seconds}}"
VERBOSE: "true"
if: inputs.test-group == 'core' || inputs.skip-providers-tests != 'true'
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/special-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,30 @@ jobs:
skip-providers-tests: ${{ inputs.skip-providers-tests }}
use-uv: ${{ inputs.use-uv }}

tests-latest-sqlalchemy:
name: "Latest SQLAlchemy test: core"
uses: ./.github/workflows/run-unit-tests.yml
permissions:
contents: read
packages: read
with:
runners: ${{ inputs.runners }}
platform: ${{ inputs.platform }}
upgrade-sqlalchemy: "true"
test-name: "LatestSQLAlchemy-Postgres"
test-scope: "DB"
test-group: "core"
backend: "postgres"
python-versions: "['${{ inputs.default-python-version }}']"
backend-versions: "['${{ inputs.default-postgres-version }}']"
excluded-providers-as-string: ${{ inputs.excluded-providers-as-string }}
excludes: "[]"
test-types-as-strings-in-json: ${{ inputs.core-test-types-list-as-strings-in-json }}
run-coverage: ${{ inputs.run-coverage }}
debug-resources: ${{ inputs.debug-resources }}
skip-providers-tests: true # TODO: After merging FAB5 set to: ${{ inputs.skip-providers-tests }}
use-uv: ${{ inputs.use-uv }}

tests-boto-core:
name: "Latest Boto test: core"
uses: ./.github/workflows/run-unit-tests.yml
Expand Down
Loading