Merge pull request #61 from HUGG/develop #20
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
| name: Pytest unit/integration (from PyOpenSci) | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| # Use bash by default in all jobs | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build-test: | |
| name: Test Run (${{ matrix.python-version }}, ${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Exclude Windows for now since it causes MPI issues | |
| # os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| os: ["ubuntu-latest", "macos-latest"] | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install nox | |
| - name: List installed packages | |
| run: pip list | |
| - name: Run tests with pytest & nox | |
| run: | | |
| nox -s tests-${{ matrix.python-version }} | |
| # You only need to upload code coverage once to codecov unless you have a | |
| # more complex build that you need coverage for. | |
| # - name: Upload coverage to Codecov | |
| # if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'}} | |
| # uses: codecov/codecov-action@v3 |