Md eval 22 #599
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 will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: pytest | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test-ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Remember to update "classifiers" in setup.py when changing Python version | |
| python-version: [3.9, '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --upgrade cython | |
| python -m pip install --upgrade setuptools | |
| python -m pip install flake8 | |
| # https://github.com/pypa/pip/issues/12030#issuecomment-1546344047 | |
| python -m pip install wheel | |
| pip install -r requirements.txt | |
| python -m pip install pytest-cov codecov | |
| python -m pip list | |
| python -m pip install -e '.[all]' | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest | |
| test-windows: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Remember to update "classifiers" in setup.py when changing Python version | |
| python-version: ['3.12'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - name: Install Perl | |
| uses: shogo82148/actions-setup-perl@v1 | |
| with: | |
| perl-version: "5.38" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --upgrade cython | |
| python -m pip install --upgrade setuptools | |
| python -m pip install flake8 | |
| # https://github.com/pypa/pip/issues/12030#issuecomment-1546344047 | |
| python -m pip install wheel | |
| pip install -r requirements.txt | |
| python -m pip install pytest-cov codecov | |
| python -m pip list | |
| python -m pip install -e '.[all]' | |
| - name: Test with pytest | |
| run: | | |
| # Ignore doctests on Windows. They are hard to guard w.r.t. file paths | |
| python -m pytest tests |