2022-10-24 21:51:15 +00:00
|
|
|
name: test
|
|
|
|
|
2022-12-04 00:42:59 +00:00
|
|
|
on:
|
2023-07-21 16:20:24 +00:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
working-directory:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
description: "From which folder this pipeline executes"
|
2023-07-21 17:36:28 +00:00
|
|
|
test_type:
|
|
|
|
type: string
|
|
|
|
description: "Test types to run"
|
2023-08-15 17:21:11 +00:00
|
|
|
default: '["core", "extended", "core-pydantic-2"]'
|
2022-12-04 00:42:59 +00:00
|
|
|
|
|
|
|
env:
|
2023-04-25 01:19:51 +00:00
|
|
|
POETRY_VERSION: "1.4.2"
|
2022-10-24 21:51:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-07-21 16:20:24 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ${{ inputs.working-directory }}
|
2022-10-24 21:51:15 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-04 00:42:59 +00:00
|
|
|
python-version:
|
2022-12-13 13:48:53 +00:00
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
|
|
|
- "3.11"
|
2023-07-21 17:36:28 +00:00
|
|
|
test_type: ${{ fromJSON(inputs.test_type) }}
|
2023-05-11 01:57:39 +00:00
|
|
|
name: Python ${{ matrix.python-version }} ${{ matrix.test_type }}
|
2022-10-24 21:51:15 +00:00
|
|
|
steps:
|
2022-12-13 13:48:53 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-05-10 13:35:07 +00:00
|
|
|
uses: "./.github/actions/poetry_setup"
|
2022-12-13 13:48:53 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2023-07-21 16:20:24 +00:00
|
|
|
working-directory: ${{ inputs.working-directory }}
|
2023-05-10 13:35:07 +00:00
|
|
|
poetry-version: "1.4.2"
|
2023-05-11 01:57:39 +00:00
|
|
|
cache-key: ${{ matrix.test_type }}
|
|
|
|
install-command: |
|
|
|
|
if [ "${{ matrix.test_type }}" == "core" ]; then
|
|
|
|
echo "Running core tests, installing dependencies with poetry..."
|
|
|
|
poetry install
|
2023-08-15 17:21:11 +00:00
|
|
|
elif [ "${{ matrix.test_type }}" == "core-pydantic-2" ]; then
|
|
|
|
echo "Running core-pydantic-v2 tests, installing dependencies with poetry..."
|
|
|
|
poetry install
|
|
|
|
poetry add pydantic@2.1
|
2023-05-11 01:57:39 +00:00
|
|
|
else
|
|
|
|
echo "Running extended tests, installing dependencies with poetry..."
|
|
|
|
poetry install -E extended_testing
|
|
|
|
fi
|
2023-08-15 17:21:11 +00:00
|
|
|
- name: Verify pydantic version
|
2022-12-13 13:48:53 +00:00
|
|
|
run: |
|
2023-08-15 17:21:11 +00:00
|
|
|
if [ "${{ matrix.test_type }}" == "core-pydantic-2" ]; then
|
|
|
|
EXPECTED_VERSION=2
|
2023-05-12 18:50:08 +00:00
|
|
|
else
|
2023-08-15 17:21:11 +00:00
|
|
|
EXPECTED_VERSION=1
|
|
|
|
fi
|
|
|
|
echo "Checking pydantic version... Expecting ${EXPECTED_VERSION}"
|
|
|
|
|
|
|
|
# Determine the major part of pydantic version
|
|
|
|
VERSION=$(poetry run python -c "import pydantic; print(pydantic.__version__)" | cut -d. -f1)
|
|
|
|
|
|
|
|
# Check that the major part of pydantic version is as expected, if not
|
|
|
|
# raise an error
|
|
|
|
if [[ "$VERSION" -ne $EXPECTED_VERSION ]]; then
|
|
|
|
echo "Error: pydantic version must be equal to ${EXPECTED_VERSION}; Found: ${VERSION}"
|
|
|
|
exit 1
|
2023-05-12 18:50:08 +00:00
|
|
|
fi
|
2023-08-15 17:21:11 +00:00
|
|
|
echo "Found pydantic version ${VERSION}, as expected"
|
|
|
|
shell: bash
|
|
|
|
- name: Run ${{matrix.test_type}} tests
|
|
|
|
run: |
|
|
|
|
case "${{ matrix.test_type }}" in
|
|
|
|
core | core-pydantic-2)
|
|
|
|
make test
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
make extended_tests
|
|
|
|
;;
|
|
|
|
esac
|
2023-05-11 01:57:39 +00:00
|
|
|
shell: bash
|