Skip to content

Remove unnecessary update from MacOs workflow #32

Remove unnecessary update from MacOs workflow

Remove unnecessary update from MacOs workflow #32

Workflow file for this run

# This workflow runs Unit-Tests for compatibility on MacOS
# with the latest supported Python version.
name: MacOS Test
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
python-version: ['3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install test utilities
run: |
pip install pytest pytest_mock pyfakefs
- name: Install package
run: pip install -e .
- name: Compile translations
run: python compile_translations.py
- name: Test with pytest
run: pytest tests/