Remove unnecessary update from MacOs workflow #32
This file contains hidden or 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
| # 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/ |