Skip to content

Reformat source code with latest Black (#138) #873

Reformat source code with latest Black (#138)

Reformat source code with latest Black (#138) #873

# GitHub Action to run spine_engine unit tests
name: Unit tests
# Run workflow on every push
on:
push
jobs:
unit-tests:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-22.04]
python-version: [3.8, 3.9, "3.10", 3.11]
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 }}
- name: Display Python version
run:
python -c "import sys; print(sys.version)"
- name: Install additional packages for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get install -y unixodbc-dev
- name: Install dependencies
env:
PYTHONUTF8: 1
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/spine-tools/Spine-Database-API.git#egg=spinedb_api
pip install .[dev]
- name: List packages
run:
pip list
- name: Install python3 kernelspecs
run: |
pip install ipykernel
python -m ipykernel install --user
- name: Run tests
run: |
if [ "$RUNNER_OS" != "Windows" ]; then
export QT_QPA_PLATFORM=offscreen
fi
coverage run -m unittest discover --verbose
shell: bash
- name: Combine Coverage reports
run:
coverage combine
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}