Release 0.32.1 #1458
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Action to run spinedb_api unit tests | |
name: Unit tests | |
# Run workflow on every push | |
on: | |
push: | |
paths: | |
- "**.py" | |
- "requirements.txt" | |
- "pyproject.toml" | |
- ".github/workflows/*.yml" | |
jobs: | |
unit-tests: | |
name: Unit tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Version from Git tags | |
run: git describe --tags | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: | | |
pyproject.toml | |
dev-requirements.txt | |
- name: Display Python version | |
run: | |
python -c "import sys; print(sys.version)" | |
- name: Install unixodbc | |
if: runner.os == 'Linux' | |
run: | |
sudo apt-get install -y unixodbc-dev # Install to get sql.h headers | |
- name: Install dependencies | |
env: | |
PYTHONUTF8: 1 | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -e . | |
python -m pip install -r dev-requirements.txt | |
- name: List packages | |
run: | |
python -m pip list | |
- name: Run tests | |
run: | |
coverage run -m unittest discover --verbose | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
call-toolbox-unit-tests: | |
name: Toolbox unit tests | |
uses: spine-tools/Spine-Toolbox/.github/workflows/unit_tests.yml@master | |
with: | |
host-os: ubuntu-22.04 | |
python-version: 3.9 | |
repository: spine-tools/Spine-Toolbox | |
coverage: false | |
post-installation-command: python -m pip install git+${{ github.server_url }}/${{ github.repository }}.git@${{ github.ref_name }} | |
secrets: inherit | |
call-toolbox-execution-tests: | |
name: Toolbox execution tests | |
uses: spine-tools/Spine-Toolbox/.github/workflows/execution_tests.yml@master | |
with: | |
host-os: ubuntu-22.04 | |
python-version: 3.9 | |
repository: spine-tools/Spine-Toolbox | |
post-installation-command: python -m pip install git+${{ github.server_url }}/${{ github.repository }}.git@${{ github.ref_name }} | |
secrets: inherit | |
call-spine-interface-test: | |
name: SpineInterface.jl test | |
uses: spine-tools/SpineInterface.jl/.github/workflows/Test.yml@master | |
with: | |
host-os: ubuntu-22.04 | |
julia-version: "1" | |
python-version: "3.12" | |
repository: spine-tools/SpineInterface.jl | |
spinedb-api-ref-name: ${{ github.ref_name }} | |
coverage: false | |
secrets: inherit |