Fix replacing a committed but then removed item with a new item #1406
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.8, 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 }} | |
toolbox-unit-tests: | |
name: Spine Toolbox unit tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: [3.8] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: spine-tools/Spine-Toolbox | |
fetch-depth: 0 | |
- 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 | |
requirements.txt | |
dev-requirements.txt | |
- name: Install additional packages for Linux | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libegl1 | |
- name: Install dependencies | |
env: | |
PYTHONUTF8: 1 | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
python -m pip install -r dev-requirements.txt | |
python -m pip install git+${{ github.server_url }}/${{ github.repository }}.git@${{ github.ref_name }} | |
- name: List packages | |
run: | |
python -m pip list | |
- name: Run tests | |
run: | | |
if [ "$RUNNER_OS" != "Windows" ]; then | |
export QT_QPA_PLATFORM=offscreen | |
fi | |
python -m unittest discover --verbose | |
shell: bash | |
toolbox-execution-tests: | |
name: Spine Toolbox execution tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: spine-tools/Spine-Toolbox | |
- 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 | |
requirements.txt | |
dev-requirements.txt | |
- name: Install additional packages for Linux | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libegl1 | |
- name: Install dependencies | |
env: | |
PYTHONUTF8: 1 | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
python -m pip install -r dev-requirements.txt | |
python -m pip install git+${{ github.server_url }}/${{ github.repository }}.git@${{ github.ref_name }} | |
- name: List packages | |
run: | |
python -m pip list | |
- name: Run tests | |
run: | |
python -m unittest discover --pattern execution_test.py --verbose |